mirror of
https://github.com/preservim/nerdcommenter.git
synced 2025-11-14 12:43:47 -05:00
added support for assymptote
This commit is contained in:
@@ -861,14 +861,16 @@ to get illegal syntax when uncommenting them.
|
|||||||
8. Changelog *NERDComChangelog*
|
8. Changelog *NERDComChangelog*
|
||||||
|
|
||||||
2.1.8
|
2.1.8
|
||||||
- added an alternative set of delims for the plsql filetype, thx to Kuchma
|
|
||||||
Michael
|
|
||||||
- added support for spectre, thx to Brett Warneke
|
|
||||||
- fixed a bug that was screwing up the removal of spaces when
|
- fixed a bug that was screwing up the removal of spaces when
|
||||||
NERDSpaceDelims was set. Thx to David Miani for posting the issue.
|
NERDSpaceDelims was set. Thx to David Miani for posting the issue
|
||||||
- fixed a bug with aligned comments and the NERDSpaceDelims option, thx to
|
- fixed a bug with aligned comments and the NERDSpaceDelims option, thx to
|
||||||
Jeremy Hinegardner
|
Jeremy Hinegardner
|
||||||
- added dummy support for lhaskell, thx to pipp for posting the issue
|
- added dummy support for lhaskell, thx to pipp for posting the issue
|
||||||
|
- added an alternative set of delims for the plsql filetype, thx to Kuchma
|
||||||
|
Michael
|
||||||
|
- added support for spectre, thx to Brett Warneke
|
||||||
|
- added support for scala, thx to Renald Buter
|
||||||
|
- added support for asymptote, thx to Vladimir Lomov
|
||||||
|
|
||||||
|
|
||||||
2.1.7
|
2.1.7
|
||||||
@@ -1185,3 +1187,5 @@ Laurent ARNOUD asterisk
|
|||||||
Kuchma Michael plsql
|
Kuchma Michael plsql
|
||||||
Brett Warneke spectre
|
Brett Warneke spectre
|
||||||
Pipp lhaskell
|
Pipp lhaskell
|
||||||
|
Renald Buter scala
|
||||||
|
Vladimir Lomov asymptote
|
||||||
|
|||||||
@@ -166,6 +166,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
|||||||
call s:MapDelimiters('''', '')
|
call s:MapDelimiters('''', '')
|
||||||
elseif a:filetype == "asterisk"
|
elseif a:filetype == "asterisk"
|
||||||
call s:MapDelimiters(';', '')
|
call s:MapDelimiters(';', '')
|
||||||
|
elseif a:filetype == "asy"
|
||||||
|
call s:MapDelimiters('//', '')
|
||||||
elseif a:filetype == "atlas"
|
elseif a:filetype == "atlas"
|
||||||
call s:MapDelimiters('C','$')
|
call s:MapDelimiters('C','$')
|
||||||
elseif a:filetype == "autohotkey"
|
elseif a:filetype == "autohotkey"
|
||||||
@@ -622,6 +624,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
|||||||
call s:MapDelimitersWithAlternative('//','', '/*', '')
|
call s:MapDelimitersWithAlternative('//','', '/*', '')
|
||||||
elseif a:filetype == "sather"
|
elseif a:filetype == "sather"
|
||||||
call s:MapDelimiters('--', '')
|
call s:MapDelimiters('--', '')
|
||||||
|
elseif a:filetype == "scala"
|
||||||
|
call s:MapDelimitersWithAlternative('//','', '/*','*/')
|
||||||
elseif a:filetype == "scheme"
|
elseif a:filetype == "scheme"
|
||||||
call s:MapDelimiters(';', '')
|
call s:MapDelimiters(';', '')
|
||||||
elseif a:filetype == "scilab"
|
elseif a:filetype == "scilab"
|
||||||
|
|||||||
Reference in New Issue
Block a user