From 9c8343c9398afc70fd8810a9a5456b95899ae8e7 Mon Sep 17 00:00:00 2001 From: James Harris Date: Thu, 15 Jul 2010 00:43:51 +0800 Subject: [PATCH] Added comment support for tmux.conf tmux.conf has comments similar to bash, making the default C style comments inappropriate. --- plugin/NERD_commenter.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index b7d9dfc..a2c4796 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -659,6 +659,8 @@ function s:SetUpForNewFiletype(filetype, forceReset) call s:MapDelimiters('#', '') elseif a:filetype ==? "tli" call s:MapDelimiters('#', '') + elseif a:filetype ==? "tmux" + call s:MapDelimiters('#', '') elseif a:filetype ==? "trasys" call s:MapDelimiters("$", "") elseif a:filetype ==? "tsalt"