make NERDTreeChDir default to 0

we dont need it to default to 1 anymore as that was a hack for windows,
but now that we handle windows paths properly we dont need it
This commit is contained in:
Martin Grenfell
2008-07-13 15:06:57 +12:00
parent 818a53003e
commit 31c1faea32
2 changed files with 2 additions and 7 deletions

View File

@@ -45,7 +45,7 @@ call s:InitVariable("g:NERDChristmasTree", 1)
call s:InitVariable("g:NERDTreeAutoCenter", 1)
call s:InitVariable("g:NERDTreeAutoCenterThreshold", 3)
call s:InitVariable("g:NERDTreeCaseSensitiveSort", 0)
call s:InitVariable("g:NERDTreeChDirMode", 1)
call s:InitVariable("g:NERDTreeChDirMode", 0)
if !exists("g:NERDTreeIgnore")
let g:NERDTreeIgnore = ['\~$']
endif