add support for tar

This commit is contained in:
Martin Grenfell 2008-05-15 09:17:51 +12:00
parent 3eea85daa4
commit e92b6f60d5
2 changed files with 3 additions and 1 deletions

View File

@ -861,7 +861,7 @@ to get illegal syntax when uncommenting them.
8. Changelog *NERDComChangelog* 8. Changelog *NERDComChangelog*
2.1.14 2.1.14
- added support for gitconfig - added support for gitconfig,tar
2.1.13 2.1.13
- added support for rib, pyrex/cython, liquid, services, gitcommit, - added support for rib, pyrex/cython, liquid, services, gitcommit,
vimperator, and slice. Thanks to spookypeanut, Greg Jandl, Christophe vimperator, and slice. Thanks to spookypeanut, Greg Jandl, Christophe

View File

@ -766,6 +766,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimiters(';', '') call s:MapDelimiters(';', '')
elseif a:filetype == "tak" elseif a:filetype == "tak"
call s:MapDelimiters('$', '') call s:MapDelimiters('$', '')
elseif a:filetype == "tar"
call s:MapDelimiters('', '')
elseif a:filetype == "tasm" elseif a:filetype == "tasm"
call s:MapDelimiters(';', '') call s:MapDelimiters(';', '')
elseif a:filetype == "tcl" elseif a:filetype == "tcl"