added support for liquid

This commit is contained in:
Martin Grenfell
2008-04-17 23:26:21 +12:00
parent f8ce318000
commit a24c8b79f8
2 changed files with 3 additions and 0 deletions

View File

@@ -865,6 +865,7 @@ to get illegal syntax when uncommenting them.
issue.
- added support for pyrex/cython, thanks to Greg Jandl for posting the
issue.
- added support for liquid templates.
2.1.12
- added support for patran and dakota, thx to Jacobo Diaz for the email

View File

@@ -444,6 +444,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimiters('#', '')
elseif a:filetype == "lilypond"
call s:MapDelimiters('%', '')
elseif a:filetype == "liquid"
call s:MapDelimiters('{%', '%}')
elseif a:filetype == "lisp"
call s:MapDelimitersWithAlternative(';','', '#|', '|#')
elseif a:filetype == "lite"