Skip to content

Commit

Permalink
Revert change to tab opening method (#766)
Browse files Browse the repository at this point in the history
Previously the "t" and "T" mappings were altered to open new tabs at
the end of the tab line.  This commit reverts that change.
  • Loading branch information
lifecrisis authored Nov 18, 2017
1 parent 93356cd commit 70c8cb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/nerdtree/opener.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand Down

0 comments on commit 70c8cb9

Please sign in to comment.