From 5e53df769d5cd0fe2ac6179242daf6c5bd60c056 Mon Sep 17 00:00:00 2001 From: Martin Grenfell Date: Mon, 9 Jan 2012 16:25:13 +0000 Subject: [PATCH] fix a bug with the T (open in new tab silently) mapping --- plugin/NERD_tree.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim index c88f393..8ab3d89 100644 --- 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