add support for objj

This commit is contained in:
Martin Grenfell
2008-11-13 23:23:48 +13:00
parent 7e3f47ed8d
commit 8098fea8d9
2 changed files with 4 additions and 0 deletions

View File

@@ -813,6 +813,7 @@ if your face looked like a toaster and a t-rex put together? :(
- add support for conkyrc, thanks to David
- add support for SVNannotate, thanks to Miguel Jaque Barbero.
- add support for sieve, thanks to Stefan Walk
- add support for objj, thanks to Adam Thorsen.
2.2.0
- rewrote the mappings system to be more "standard".
@@ -1053,6 +1054,7 @@ Keitheis mako, genshi
David conkyrc
Miguel Jaque Barbero SVNannotate
Stefan Walk sieve
Adam Thorsen objj
==============================================================================
9. License *NERDComLicense*

View File

@@ -571,6 +571,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimitersWithAlternative('//','', '/*','*/')
elseif a:filetype == "objcpp"
call s:MapDelimitersWithAlternative('//','', '/*','*/')
elseif a:filetype == "objj"
call s:MapDelimitersWithAlternative('//','', '/*','*/')
elseif a:filetype == "ocaml"
call s:MapDelimiters('(*','*)')
elseif a:filetype == "occam"