mirror of
https://github.com/preservim/nerdcommenter.git
synced 2025-02-21 03:01:36 +08:00
added new filetypes, updated plsql
This commit is contained in:
parent
e8728161a0
commit
3161d57792
@ -860,6 +860,11 @@ to get illegal syntax when uncommenting them.
|
||||
==============================================================================
|
||||
8. Changelog *NERDComChangelog*
|
||||
|
||||
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
|
||||
|
||||
2.1.7
|
||||
- added support for haml, thx to Greb Weber
|
||||
- added support for asterisk, thx to Laurent ARNOUD
|
||||
@ -1165,3 +1170,6 @@ Bruce Sherrod velocity
|
||||
timberke cobol
|
||||
Aaron Schaefer factor
|
||||
Laurent ARNOUD asterisk
|
||||
Kuchma Michael plsql
|
||||
Brett Warneke spectre
|
||||
|
||||
|
@ -553,7 +553,7 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
||||
elseif a:filetype == "plm"
|
||||
call s:MapDelimitersWithAlternative('//','', '/*','*/')
|
||||
elseif a:filetype == "plsql"
|
||||
call s:MapDelimiters('--', '')
|
||||
call s:MapDelimitersWithAlternative('--', '', '/*', '*/')
|
||||
elseif a:filetype == "po"
|
||||
call s:MapDelimiters('#', '')
|
||||
elseif a:filetype == "postscr"
|
||||
@ -676,6 +676,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
||||
call s:MapDelimiters('#', '')
|
||||
elseif a:filetype == "specman"
|
||||
call s:MapDelimiters('//', '')
|
||||
elseif a:filetype == "spectre"
|
||||
call s:MapDelimitersWithAlternative('//', '', '*', '')
|
||||
elseif a:filetype == "spice"
|
||||
call s:MapDelimiters('$', '')
|
||||
elseif a:filetype == "sql"
|
||||
|
Loading…
x
Reference in New Issue
Block a user