added new filetypes, updated plsql

This commit is contained in:
marty 2007-12-07 20:17:15 +13:00
parent e8728161a0
commit 3161d57792
2 changed files with 11 additions and 1 deletions

View File

@ -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

View File

@ -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"