[Windows] Use {count}tabnext instead of normal {count}gt (#745)

To workaround https://github.com/neovim/neovim/issues/4895
This commit is contained in:
Mars Peng
2018-12-11 09:50:14 +08:00
committed by Junegunn Choi
parent 95f025ef2d
commit f0acabf7e8

View File

@@ -583,7 +583,7 @@ function! s:find_open_window(b)
endfunction endfunction
function! s:jump(t, w) function! s:jump(t, w)
execute 'normal!' a:t.'gt' execute a:t.'tabnext'
execute a:w.'wincmd w' execute a:w.'wincmd w'
endfunction endfunction