diff --git a/doc/NERD_commenter.txt b/doc/NERD_commenter.txt index c219cc3..8ebcfd7 100644 --- a/doc/NERD_commenter.txt +++ b/doc/NERD_commenter.txt @@ -806,6 +806,7 @@ if your face looked like a toaster and a t-rex put together? :( - add support for actionscript and processing thanks to Edwin Benavides - add support for ps1 (powershell), thanks to Jason Mills - add support for hostsaccess, thanks to Thomas Rowe + - add support for CVScommit 2.2.0 - rewrote the mappings system to be more "standard". diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 020c370..f08802f 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -245,6 +245,8 @@ function s:SetUpForNewFiletype(filetype, forceReset) call s:MapDelimiters('CVS:','') elseif a:filetype == "CVSAnnotate" call s:MapDelimiters('','') + elseif a:filetype == "CVScommit" + call s:MapDelimiters('','') elseif a:filetype == "d" call s:MapDelimitersWithAlternative('//','', '/*','*/') elseif a:filetype == "dcl"