mirror of
https://github.com/preservim/nerdcommenter.git
synced 2024-11-26 02:10:11 +08:00
added support for patran and dakota
This commit is contained in:
parent
4f05d713b4
commit
aafe01e4e9
|
@ -860,6 +860,9 @@ to get illegal syntax when uncommenting them.
|
|||
==============================================================================
|
||||
8. Changelog *NERDComChangelog*
|
||||
|
||||
2.something
|
||||
- added support for patran and dakota, thx to Jacobo Diaz for the email
|
||||
|
||||
2.1.11
|
||||
- fixed a bug with the selection option and visual commenting (again).
|
||||
Thanks to Ingo Karkat (again).
|
||||
|
@ -1211,3 +1214,4 @@ Vladimir Lomov asymptote
|
|||
Marco mrxvtrc, aap
|
||||
nicothakis SVNAnnotate, CVSAnnotate, SVKAnnotate
|
||||
Chen Xing Wikipedia
|
||||
Jacobo Diaz dakota, patran
|
||||
|
|
|
@ -256,6 +256,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
|||
call s:MapDelimitersWithAlternative('//','', '/*','*/')
|
||||
elseif a:filetype == "dcl"
|
||||
call s:MapDelimiters('$!', '')
|
||||
elseif a:filetype == "dakota"
|
||||
call s:MapDelimiters('#', '')
|
||||
elseif a:filetype == "debchangelog"
|
||||
call s:MapDelimiters('', '')
|
||||
elseif a:filetype == "debcontrol"
|
||||
|
@ -542,6 +544,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
|||
call s:MapDelimitersWithAlternative('{','}', '(*', '*)')
|
||||
elseif a:filetype == "passwd"
|
||||
call s:MapDelimiters('','')
|
||||
elseif a:filetype == "patran"
|
||||
call s:MapDelimitersWithAlternative('$','','/*', '*/')
|
||||
elseif a:filetype == "pcap"
|
||||
call s:MapDelimiters('#', '')
|
||||
elseif a:filetype == "pccts"
|
||||
|
|
Loading…
Reference in New Issue
Block a user