commit 0a0374b826dcdb3cdee4b40393205c16c744aa8c
parent 870bedef21f6360ac0c1134505b2068c54577292
Author: Jason Franklin <j_fra@fastmail.us>
Date: Sat, 11 Nov 2017 09:09:19 -0500
Remove an unnecessary assignment
Diffstat:
1 file changed, 0 insertions(+), 5 deletions(-)
diff --git a/lib/nerdtree/creator.vim b/lib/nerdtree/creator.vim
@@ -109,11 +109,6 @@ endfunction
" FUNCTION: s:Creator._createNERDTree(path) {{{1
function! s:Creator._createNERDTree(path, type)
let b:NERDTree = g:NERDTree.New(a:path, a:type)
- "TODO: This is kept for compatability only since many things use
- "b:NERDTreeRoot instead of the new NERDTree.root
- "Remove this one day
- let b:NERDTreeRoot = b:NERDTree.root
-
call b:NERDTree.root.open()
endfunction