add support for sieve

This commit is contained in:
Martin Grenfell 2008-11-13 23:16:21 +13:00
parent 06683e3311
commit 7e3f47ed8d
2 changed files with 4 additions and 0 deletions

View File

@ -812,6 +812,7 @@ if your face looked like a toaster and a t-rex put together? :(
- add support for mako and genshi, thanks to Keitheis. - add support for mako and genshi, thanks to Keitheis.
- add support for conkyrc, thanks to David - add support for conkyrc, thanks to David
- add support for SVNannotate, thanks to Miguel Jaque Barbero. - add support for SVNannotate, thanks to Miguel Jaque Barbero.
- add support for sieve, thanks to Stefan Walk
2.2.0 2.2.0
- rewrote the mappings system to be more "standard". - rewrote the mappings system to be more "standard".
@ -1051,6 +1052,7 @@ Simon Ruderich asciidoc, git, gitcommit, gitrebase
Keitheis mako, genshi Keitheis mako, genshi
David conkyrc David conkyrc
Miguel Jaque Barbero SVNannotate Miguel Jaque Barbero SVNannotate
Stefan Walk sieve
============================================================================== ==============================================================================
9. License *NERDComLicense* 9. License *NERDComLicense*

View File

@ -725,6 +725,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimiters('<!--','-->') call s:MapDelimiters('<!--','-->')
elseif a:filetype == "sicad" elseif a:filetype == "sicad"
call s:MapDelimiters('*', '') call s:MapDelimiters('*', '')
elseif a:filetype == "sieve"
call s:MapDelimiters('#', '')
elseif a:filetype == "simula" elseif a:filetype == "simula"
call s:MapDelimitersWithAlternative('%', '', '--', '') call s:MapDelimitersWithAlternative('%', '', '--', '')
elseif a:filetype == "sinda" elseif a:filetype == "sinda"