add support for SVNinfo

This commit is contained in:
Martin Grenfell
2008-10-03 23:23:08 +13:00
parent d6282ef7a3
commit 226063bfc1
2 changed files with 5 additions and 2 deletions

View File

@@ -806,9 +806,9 @@ if your face looked like a toaster and a t-rex put together? :(
- the default mappings now start with <leader>c instead of ,c - the default mappings now start with <leader>c instead of ,c
- see :help NERDComMappings, and :help NERDCreateDefaultMappings for - see :help NERDComMappings, and :help NERDCreateDefaultMappings for
more info more info
- add support for applescript, calbire, man, SVNcommit, potwiki, txt2tags. - add support for applescript, calbire, man, SVNcommit, potwiki, txt2tags and SVNinfo.
Thanks to nicothakis, timberke, sgronblo, mntnoe, Bernhard Grotz, John Thanks to nicothakis, timberke, sgronblo, mntnoe, Bernhard Grotz, John
O'Shea and François respectively. O'Shea, François and Giacomo Mariani respectively.
- bugfix for haskell delimiters. Thanks to mntnoe. - bugfix for haskell delimiters. Thanks to mntnoe.
2.1.18 2.1.18
- add support for llvm. Thanks to nicothakis. - add support for llvm. Thanks to nicothakis.
@@ -1026,6 +1026,7 @@ Phillip Kovalev xquery
Bernhard Grotz potwiki Bernhard Grotz potwiki
sgronblo man sgronblo man
François txt2tags François txt2tags
Giacomo Mariani SVNinfo
============================================================================== ==============================================================================
9. License *NERDComLicense* 9. License *NERDComLicense*

View File

@@ -771,6 +771,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimiters('','') call s:MapDelimiters('','')
elseif a:filetype == "SVNdiff" elseif a:filetype == "SVNdiff"
call s:MapDelimiters('','') call s:MapDelimiters('','')
elseif a:filetype == "SVNinfo"
call s:MapDelimiters('','')
elseif a:filetype == "systemverilog" elseif a:filetype == "systemverilog"
call s:MapDelimitersWithAlternative('//','', '/*','*/') call s:MapDelimitersWithAlternative('//','', '/*','*/')
elseif a:filetype == "tads" elseif a:filetype == "tads"