From 8176930f175b00924fefb82de417c0c9055c1254 Mon Sep 17 00:00:00 2001 From: Martin Grenfell Date: Mon, 30 Mar 2009 18:34:08 +1300 Subject: [PATCH] remove a useless comment --- plugin/NERD_commenter.vim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index d08e193..93417ff 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -718,15 +718,13 @@ function s:SetUpForNewFiletype(filetype, forceReset) elseif a:filetype ==? "z8a" call s:MapDelimiters(';', '') - "we have not hardcoded the comment delimiters to use for this filetype so - "get them from &commentstring. else "extract the delims from &commentstring let left= substitute(&commentstring, '\([^ \t]*\)\s*%s.*', '\1', '') let right= substitute(&commentstring, '.*%s\s*\(.*\)', '\1', 'g') - call s:MapDelimiters(left,right) + endif endfunction