From dda8510e0c9eb69da91594c427ffdb5ea709452d Mon Sep 17 00:00:00 2001 From: Martin Grenfell Date: Thu, 13 Nov 2008 22:54:59 +1300 Subject: [PATCH] add support for conkyrc --- 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 544f77d..1cedc8f 100644 --- a/doc/NERD_commenter.txt +++ b/doc/NERD_commenter.txt @@ -810,6 +810,7 @@ if your face looked like a toaster and a t-rex put together? :( - add support for asciidoc, git and gitrebase. Thanks to Simon Ruderich. - use # for gitcommit comments, thanks to Simon Ruderich. - add support for mako and genshi, thanks to Keitheis. + - add support for conkyrc, thanks to David 2.2.0 - rewrote the mappings system to be more "standard". @@ -1047,6 +1048,7 @@ Edwin Benavides actionscript, processing Thomas Rowe hostsaccess Simon Ruderich asciidoc, git, gitcommit, gitrebase Keitheis mako, genshi +David conkyrc ============================================================================== 9. License *NERDComLicense* diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index b2d027d..18c4c03 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -225,6 +225,8 @@ function s:SetUpForNewFiletype(filetype, forceReset) call s:MapDelimiters('#', '') elseif a:filetype == "config" call s:MapDelimiters('dnl ', '') + elseif a:filetype == "conkyrc" + call s:MapDelimiters('#', '') elseif a:filetype == "context" call s:MapDelimiters('%','') elseif a:filetype == "cpp"