add support for processing

This commit is contained in:
Martin Grenfell
2008-10-25 11:36:01 +13:00
parent 03d9562db8
commit cc9f986514
2 changed files with 3 additions and 1 deletions

View File

@@ -803,7 +803,7 @@ if your face looked like a toaster and a t-rex put together? :(
- fix automake comments, thanks to Elias Pipping - fix automake comments, thanks to Elias Pipping
- make haml comments default to -# with / as the alternative delimiter, - make haml comments default to -# with / as the alternative delimiter,
thanks to tpope thanks to tpope
- add support for actionscript, thanks to Edwin Benavides - add support for actionscript and processing thanks to Edwin Benavides
2.2.0 2.2.0
- rewrote the mappings system to be more "standard". - rewrote the mappings system to be more "standard".

View File

@@ -619,6 +619,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimiters('%', '') call s:MapDelimiters('%', '')
elseif a:filetype == "ppwiz" elseif a:filetype == "ppwiz"
call s:MapDelimiters(';;', '') call s:MapDelimiters(';;', '')
elseif a:filetype == "processing"
call s:MapDelimitersWithAlternative('//','', '/*','*/')
elseif a:filetype == "procmail" elseif a:filetype == "procmail"
call s:MapDelimiters('#', '') call s:MapDelimiters('#', '')
elseif a:filetype == "progress" elseif a:filetype == "progress"