From f95255e299665402f3671869a9129c7c4f772a71 Mon Sep 17 00:00:00 2001 From: Martin Grenfell Date: Thu, 17 Apr 2008 23:13:34 +1200 Subject: [PATCH] added support for rib --- doc/NERD_commenter.txt | 6 +++++- plugin/NERD_commenter.vim | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/NERD_commenter.txt b/doc/NERD_commenter.txt index bdb430e..6d38736 100644 --- a/doc/NERD_commenter.txt +++ b/doc/NERD_commenter.txt @@ -860,6 +860,10 @@ to get illegal syntax when uncommenting them. ============================================================================== 8. Changelog *NERDComChangelog* +2.x.x + - added support for rib files, thanks to spookypeanut for posting the + issue. + 2.1.12 - added support for patran and dakota, thx to Jacobo Diaz for the email - added support for gentoo-env-d, gentoo-init-d, gentoo-make-conf, grub, @@ -1222,4 +1226,4 @@ Chen Xing Wikipedia Jacobo Diaz dakota, patran Li Jin gentoo-env-d, gentoo-init-d, gentoo-make-conf, grub, modconf, sudoers - +SpookeyPeanut rib diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 49958d5..444892c 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -632,6 +632,8 @@ function s:SetUpForNewFiletype(filetype, forceReset) call s:MapDelimiters('#', '') elseif a:filetype == "rexx" call s:MapDelimiters('/*','*/') + elseif a:filetype == "rib" + call s:MapDelimiters('#','') elseif a:filetype == "robots" call s:MapDelimiters('#', '') elseif a:filetype == "rpl"