add support for hostsaccess

This commit is contained in:
Martin Grenfell 2008-10-29 20:31:13 +13:00
parent 1d92203107
commit f65d86fea3
2 changed files with 4 additions and 0 deletions

View File

@ -805,6 +805,7 @@ if your face looked like a toaster and a t-rex put together? :(
thanks to tpope
- add support for actionscript and processing thanks to Edwin Benavides
- add support for ps1 (powershell), thanks to Jason Mills
- add support for hostsaccess, thanks to Thomas Rowe
2.2.0
- rewrote the mappings system to be more "standard".
@ -1039,6 +1040,7 @@ Giacomo Mariani SVNinfo
Matthew Lee Hinman newlisp
Elias Pipping automake
Edwin Benavides actionscript, processing
Thomas Rowe hostsaccess
==============================================================================
9. License *NERDComLicense*

View File

@ -383,6 +383,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimitersWithAlternative('//','', '/*','*/')
elseif a:filetype == "hog"
call s:MapDelimiters('#', '')
elseif a:filetype == "hostsaccess"
call s:MapDelimiters('#', '')
elseif a:filetype == "html"
call s:MapDelimitersWithAlternative('<!--','-->', '//', '')
elseif a:filetype == "htmldjango"