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.
This commit is contained in:
Jason Franklin 2017-11-18 09:50:40 -05:00 committed by GitHub
parent 93356cd92b
commit 70c8cb9bfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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