mirror of
https://github.com/preservim/nerdcommenter.git
synced 2024-11-29 12:16:18 +08:00
added support for Wikipedia, mplayerconf and mkd
This commit is contained in:
parent
a24534c6f1
commit
6337d56893
|
@ -860,6 +860,10 @@ to get illegal syntax when uncommenting them.
|
||||||
==============================================================================
|
==============================================================================
|
||||||
8. Changelog *NERDComChangelog*
|
8. Changelog *NERDComChangelog*
|
||||||
|
|
||||||
|
2.1.10
|
||||||
|
- added support for Wikipedia (thanks to Chen Xing)
|
||||||
|
- added support for mplayerconf
|
||||||
|
|
||||||
2.1.9
|
2.1.9
|
||||||
- added support for mrxvtrc and aap, thx to Marco for the emails
|
- added support for mrxvtrc and aap, thx to Marco for the emails
|
||||||
- added dummy support for SVNAnnotate, SVKAnnotate and CVSAnnotate, thx to
|
- added dummy support for SVNAnnotate, SVKAnnotate and CVSAnnotate, thx to
|
||||||
|
@ -1149,6 +1153,8 @@ comments and the NERDSpaceDelims option.
|
||||||
|
|
||||||
Thanks to marco for suggesting NERDDefaultNesting be set by default.
|
Thanks to marco for suggesting NERDDefaultNesting be set by default.
|
||||||
|
|
||||||
|
Thanks to Ingo Karkat for the bug reports and the bugfix patch.
|
||||||
|
|
||||||
Not to forget! Thanks to the following people for sending me new filetypes to
|
Not to forget! Thanks to the following people for sending me new filetypes to
|
||||||
support :D
|
support :D
|
||||||
|
|
||||||
|
@ -1171,7 +1177,7 @@ Lizendir fstab
|
||||||
Michael Böhler autoit, autohotkey and docbk
|
Michael Böhler autoit, autohotkey and docbk
|
||||||
Aaron Small cmake
|
Aaron Small cmake
|
||||||
Ramiro htmldjango and django
|
Ramiro htmldjango and django
|
||||||
Stefano Zacchiroli debcontrol and debchangelog
|
Stefano Zacchiroli debcontrol, debchangelog, mkd
|
||||||
Alex Tarkovsky ebuild and eclass
|
Alex Tarkovsky ebuild and eclass
|
||||||
Jorge Rodrigues gams
|
Jorge Rodrigues gams
|
||||||
Rainer Müller Objective C
|
Rainer Müller Objective C
|
||||||
|
@ -1190,7 +1196,7 @@ Greg Weber D, haml
|
||||||
Bruce Sherrod velocity
|
Bruce Sherrod velocity
|
||||||
timberke cobol
|
timberke cobol
|
||||||
Aaron Schaefer factor
|
Aaron Schaefer factor
|
||||||
Laurent ARNOUD asterisk
|
Laurent ARNOUD asterisk, mplayerconf
|
||||||
Kuchma Michael plsql
|
Kuchma Michael plsql
|
||||||
Brett Warneke spectre
|
Brett Warneke spectre
|
||||||
Pipp lhaskell
|
Pipp lhaskell
|
||||||
|
@ -1198,3 +1204,4 @@ Renald Buter scala
|
||||||
Vladimir Lomov asymptote
|
Vladimir Lomov asymptote
|
||||||
Marco mrxvtrc, aap
|
Marco mrxvtrc, aap
|
||||||
nicothakis SVNAnnotate, CVSAnnotate, SVKAnnotate
|
nicothakis SVNAnnotate, CVSAnnotate, SVKAnnotate
|
||||||
|
Chen Xing Wikipedia
|
||||||
|
|
|
@ -474,6 +474,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
||||||
call s:MapDelimiters('%', '')
|
call s:MapDelimiters('%', '')
|
||||||
elseif a:filetype == "mib"
|
elseif a:filetype == "mib"
|
||||||
call s:MapDelimiters('--', '')
|
call s:MapDelimiters('--', '')
|
||||||
|
elseif a:filetype == "mkd"
|
||||||
|
call s:MapDelimiters('>', '')
|
||||||
elseif a:filetype == "mma"
|
elseif a:filetype == "mma"
|
||||||
call s:MapDelimiters('(*','*)')
|
call s:MapDelimiters('(*','*)')
|
||||||
elseif a:filetype == "model"
|
elseif a:filetype == "model"
|
||||||
|
@ -486,6 +488,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
||||||
call s:MapDelimiters('(*','*)')
|
call s:MapDelimiters('(*','*)')
|
||||||
elseif a:filetype == "monk"
|
elseif a:filetype == "monk"
|
||||||
call s:MapDelimiters(';', '')
|
call s:MapDelimiters(';', '')
|
||||||
|
elseif a:filetype == "mplayerconf"
|
||||||
|
call s:MapDelimiters('#', '')
|
||||||
elseif a:filetype == "mrxvtrc"
|
elseif a:filetype == "mrxvtrc"
|
||||||
call s:MapDelimiters('#', '')
|
call s:MapDelimiters('#', '')
|
||||||
elseif a:filetype == "mush"
|
elseif a:filetype == "mush"
|
||||||
|
@ -790,6 +794,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
||||||
call s:MapDelimiters('##', '')
|
call s:MapDelimiters('##', '')
|
||||||
elseif a:filetype == "wget"
|
elseif a:filetype == "wget"
|
||||||
call s:MapDelimiters('#', '')
|
call s:MapDelimiters('#', '')
|
||||||
|
elseif a:filetype ==? "Wikipedia"
|
||||||
|
call s:MapDelimiters('<!--','-->')
|
||||||
elseif a:filetype == "winbatch"
|
elseif a:filetype == "winbatch"
|
||||||
call s:MapDelimiters(';', '')
|
call s:MapDelimiters(';', '')
|
||||||
elseif a:filetype == "wml"
|
elseif a:filetype == "wml"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user