commit 5d7bc3b0b86e924b97286ee621cf6ae05995417f
parent f173f62c9af909ed9ecdbeb52cb4d20bb41a632c
Author: Phil Runninger <PhilRunninger@users.noreply.github.com>
Date: Thu, 22 Sep 2016 15:54:39 -0400
Merge pull request #533 from devm33/fix_e_on_dir
update api call to open directory tree in window
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/nerdtree/opener.vim b/lib/nerdtree/opener.vim
@@ -257,7 +257,7 @@ endfunction
function! s:Opener._openDirectory(node)
if self._nerdtree.isWinTree()
call self._gotoTargetWin()
- call g:NERDTreeCreator.CreateWindow(a:node.path.str())
+ call g:NERDTreeCreator.CreateWindowTree(a:node.path.str())
else
call self._gotoTargetWin()
if empty(self._where)