mirror of
https://github.com/preservim/nerdcommenter.git
synced 2025-02-18 11:42:46 +08:00
add support for hostsaccess
This commit is contained in:
parent
1d92203107
commit
f65d86fea3
|
@ -805,6 +805,7 @@ if your face looked like a toaster and a t-rex put together? :(
|
||||||
thanks to tpope
|
thanks to tpope
|
||||||
- add support for actionscript and processing thanks to Edwin Benavides
|
- add support for actionscript and processing thanks to Edwin Benavides
|
||||||
- add support for ps1 (powershell), thanks to Jason Mills
|
- add support for ps1 (powershell), thanks to Jason Mills
|
||||||
|
- add support for hostsaccess, thanks to Thomas Rowe
|
||||||
|
|
||||||
2.2.0
|
2.2.0
|
||||||
- rewrote the mappings system to be more "standard".
|
- rewrote the mappings system to be more "standard".
|
||||||
|
@ -1039,6 +1040,7 @@ Giacomo Mariani SVNinfo
|
||||||
Matthew Lee Hinman newlisp
|
Matthew Lee Hinman newlisp
|
||||||
Elias Pipping automake
|
Elias Pipping automake
|
||||||
Edwin Benavides actionscript, processing
|
Edwin Benavides actionscript, processing
|
||||||
|
Thomas Rowe hostsaccess
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
9. License *NERDComLicense*
|
9. License *NERDComLicense*
|
||||||
|
|
|
@ -383,6 +383,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
||||||
call s:MapDelimitersWithAlternative('//','', '/*','*/')
|
call s:MapDelimitersWithAlternative('//','', '/*','*/')
|
||||||
elseif a:filetype == "hog"
|
elseif a:filetype == "hog"
|
||||||
call s:MapDelimiters('#', '')
|
call s:MapDelimiters('#', '')
|
||||||
|
elseif a:filetype == "hostsaccess"
|
||||||
|
call s:MapDelimiters('#', '')
|
||||||
elseif a:filetype == "html"
|
elseif a:filetype == "html"
|
||||||
call s:MapDelimitersWithAlternative('<!--','-->', '//', '')
|
call s:MapDelimitersWithAlternative('<!--','-->', '//', '')
|
||||||
elseif a:filetype == "htmldjango"
|
elseif a:filetype == "htmldjango"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user