add support for vimperator

This commit is contained in:
Martin Grenfell 2008-04-29 22:03:10 +12:00
parent 06be251c66
commit c5623a31e2
2 changed files with 3 additions and 0 deletions

View File

@ -868,6 +868,7 @@ to get illegal syntax when uncommenting them.
- added support for liquid templates. - added support for liquid templates.
- added support for services and gitcommit, thx to Christophe Benz - added support for services and gitcommit, thx to Christophe Benz
for the email for the email
- added support for vimperator, thx to A Pontus for the issue
- set the NERDRemoveExtraSpaces option to 1 by default as the doc states - set the NERDRemoveExtraSpaces option to 1 by default as the doc states
- fixed a bug where extra spaces werent being removed sometimes, thx to - fixed a bug where extra spaces werent being removed sometimes, thx to
Zhang Shuhan for the report Zhang Shuhan for the report

View File

@ -814,6 +814,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimiters('"','') call s:MapDelimiters('"','')
elseif a:filetype == "viminfo" elseif a:filetype == "viminfo"
call s:MapDelimiters('','') call s:MapDelimiters('','')
elseif a:filetype == "vimperator"
call s:MapDelimiters('"','')
elseif a:filetype == "virata" elseif a:filetype == "virata"
call s:MapDelimiters('%', '') call s:MapDelimiters('%', '')
elseif a:filetype == "vo_base" elseif a:filetype == "vo_base"