diff --git a/doc/NERD_commenter.txt b/doc/NERD_commenter.txt index aba160e..8f0fd42 100644 --- a/doc/NERD_commenter.txt +++ b/doc/NERD_commenter.txt @@ -865,6 +865,7 @@ to get illegal syntax when uncommenting them. - added mason support, thanks to Indriði Einarsson - added map support, thanks to Chris - added bzr support, thanks to Stromnov + - added group support, thanks to Krzysztof A. Adamski 2.1.14 - added support for gitconfig, tar, nerdtree @@ -1257,3 +1258,4 @@ Stromnov slice, bzr Martin Kustermann pamconf Indriði Einarsson mason Chris map +Krzysztof A. Adamski group diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 1ab2039..42f0813 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -368,6 +368,8 @@ function s:SetUpForNewFiletype(filetype, forceReset) call s:MapDelimiters('#','') elseif a:filetype == "groovy" call s:MapDelimitersWithAlternative('//','', '/*','*/') + elseif a:filetype == "group" + call s:MapDelimiters('','') elseif a:filetype == "grub" call s:MapDelimiters('#', '') elseif a:filetype == "gtkrc"