From 06683e3311a544239891bcbb333904817af5c979 Mon Sep 17 00:00:00 2001 From: Martin Grenfell Date: Thu, 13 Nov 2008 22:57:08 +1300 Subject: [PATCH] add support for SVNannotate --- doc/NERD_commenter.txt | 2 ++ plugin/NERD_commenter.vim | 2 ++ 2 files changed, 4 insertions(+) diff --git a/doc/NERD_commenter.txt b/doc/NERD_commenter.txt index 1cedc8f..1a28edb 100644 --- a/doc/NERD_commenter.txt +++ b/doc/NERD_commenter.txt @@ -811,6 +811,7 @@ if your face looked like a toaster and a t-rex put together? :( - use # for gitcommit comments, thanks to Simon Ruderich. - add support for mako and genshi, thanks to Keitheis. - add support for conkyrc, thanks to David + - add support for SVNannotate, thanks to Miguel Jaque Barbero. 2.2.0 - rewrote the mappings system to be more "standard". @@ -1049,6 +1050,7 @@ Thomas Rowe hostsaccess Simon Ruderich asciidoc, git, gitcommit, gitrebase Keitheis mako, genshi David conkyrc +Miguel Jaque Barbero SVNannotate ============================================================================== 9. License *NERDComLicense* diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 18c4c03..a311adc 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -789,6 +789,8 @@ function s:SetUpForNewFiletype(filetype, forceReset) call s:MapDelimiters('','') elseif a:filetype == "svn" call s:MapDelimiters('','') + elseif a:filetype == "SVNannotate" + call s:MapDelimiters('','') elseif a:filetype == "SVNAnnotate" call s:MapDelimiters('','') elseif a:filetype == "SVNcommit"