Implement PR review comments.

This commit is contained in:
Phil Runninger (mac)
2018-09-10 06:57:39 -04:00
parent 18071f5999
commit c726ec7318
2 changed files with 9 additions and 6 deletions

View File

@@ -202,12 +202,15 @@ function! NERDTreeFocus()
endfunction
function! NERDTreeCWD()
let l:cwd = getcwd()
let l:cwdPath = g:NERDTreePath.New(getcwd())
call NERDTreeFocus()
if l:cwd != getcwd()
exec 'cd '.l:cwd
if b:NERDTree.root.path.equals(l:cwdPath)
return
endif
call nerdtree#ui_glue#chRootCwd()
let l:newRoot = g:NERDTreeFileNode.New(l:cwdPath, b:NERDTree)
call b:NERDTree.changeRoot(l:newRoot)
endfunction
function! NERDTreeAddPathFilter(callback)