From f0acabf7e837e626c7102c30af890bccf79e33b7 Mon Sep 17 00:00:00 2001 From: Mars Peng Date: Tue, 11 Dec 2018 09:50:14 +0800 Subject: [PATCH] [Windows] Use `{count}tabnext` instead of `normal {count}gt` (#745) To workaround https://github.com/neovim/neovim/issues/4895 --- autoload/fzf/vim.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fzf/vim.vim b/autoload/fzf/vim.vim index 22ca98d..a97beb2 100644 --- a/autoload/fzf/vim.vim +++ b/autoload/fzf/vim.vim @@ -583,7 +583,7 @@ function! s:find_open_window(b) endfunction function! s:jump(t, w) - execute 'normal!' a:t.'gt' + execute a:t.'tabnext' execute a:w.'wincmd w' endfunction