correct the default value for NERDRemoveExtraSpaces

previously NERDRemoveExtraSpaces was set to 0 by default even though the
documentation stated the default as 1
This commit is contained in:
Martin Grenfell
2008-04-28 20:56:41 +12:00
parent 7ea2aeea99
commit f2fa62bd4f

View File

@@ -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)