mirror of
https://github.com/preservim/nerdcommenter.git
synced 2024-11-26 02:10:11 +08:00
add support for sieve
This commit is contained in:
parent
06683e3311
commit
7e3f47ed8d
|
@ -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*
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user