commit 5e53df769d5cd0fe2ac6179242daf6c5bd60c056
parent 3b325f6812ed035122797b98fa5c9a6a14ceccd1
Author: Martin Grenfell <martin.grenfell@gmail.com>
Date: Mon, 9 Jan 2012 16:25:13 +0000
fix a bug with the T (open in new tab silently) mapping
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -4167,7 +4167,7 @@ endfunction
" FUNCTION: s:openInNewTabSilent(target) {{{2
function! s:openInNewTabSilent(target)
- call a:target.activate({'where': 't', 'stayInCurrentTab': 1})
+ call a:target.activate({'where': 't', 'stay': 1})
endfunction
" FUNCTION: s:openNodeRecursively(node) {{{2