From f2fa62bd4f94fab79e97935926b100dde0a66282 Mon Sep 17 00:00:00 2001 From: Martin Grenfell Date: Mon, 28 Apr 2008 20:56:41 +1200 Subject: [PATCH] correct the default value for NERDRemoveExtraSpaces previously NERDRemoveExtraSpaces was set to 0 by default even though the documentation stated the default as 1 --- plugin/NERD_commenter.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index d94e363..904de48 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -59,7 +59,7 @@ call s:InitVariable("g:NERDMenuMode", 3) call s:InitVariable("g:NERDLPlace", "[>") call s:InitVariable("g:NERDUsePlaceHolders", 1) call s:InitVariable("g:NERDRemoveAltComs", 1) -call s:InitVariable("g:NERDRemoveExtraSpaces", 0) +call s:InitVariable("g:NERDRemoveExtraSpaces", 1) call s:InitVariable("g:NERDRPlace", "<]") call s:InitVariable("g:NERDShutUp", '0') call s:InitVariable("g:NERDSpaceDelims", 0)