add support for actionscript

This commit is contained in:
Martin Grenfell 2008-10-25 11:35:34 +13:00
parent 1301323179
commit 03d9562db8
2 changed files with 3 additions and 0 deletions

View File

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

View File

@ -125,6 +125,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimiters('%', '')
elseif a:filetype == "acedb"
call s:MapDelimitersWithAlternative('//','', '/*','*/')
elseif a:filetype == "actionscript"
call s:MapDelimitersWithAlternative('//','', '/*','*/')
elseif a:filetype == "ada"
call s:MapDelimitersWithAlternative('--','', '-- ', '')
elseif a:filetype == "ahdl"