commit 70c8cb9bfa33add36680bafaef79e3474164dd11
parent 93356cd92ba914af24cf8c4db0ef2fa1deac3769
Author: Jason Franklin <lifecrisis@users.noreply.github.com>
Date: Sat, 18 Nov 2017 09:50:40 -0500
Revert change to tab opening method (#766)
Previously the "t" and "T" mappings were altered to open new tabs at
the end of the tab line. This commit reverts that change.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/nerdtree/opener.vim b/lib/nerdtree/opener.vim
@@ -75,7 +75,7 @@ function! s:Opener._gotoTargetWin()
elseif self._where == 'h'
split
elseif self._where == 't'
- $tabnew
+ tabnew
endif
else
call self._checkToCloseTree(1)
@@ -85,7 +85,7 @@ function! s:Opener._gotoTargetWin()
elseif self._where == 'h'
call self._newSplit()
elseif self._where == 't'
- $tabnew
+ tabnew
elseif self._where == 'p'
call self._previousWindow()
endif