From bca88e735b063cec69127f2ab7efc28b868789a7 Mon Sep 17 00:00:00 2001 From: Tim-Smart Date: Fri, 11 Sep 2009 19:48:02 +1200 Subject: [PATCH] s:CommentLinesSexy - Re-added missing line which prefixes whitespace to top delimiter --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 4ee0f85..b7d9dfc 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -1147,6 +1147,7 @@ function s:CommentLinesSexy(topline, bottomline) " add the left delimiter one line above the lines that are to be commented call cursor(a:topline, 1) execute 'normal! O' + let theLine = repeat(' ', leftAlignIndx) . left " Make sure tabs are respected if !&expandtab