Skip to content

Commit 0ed9b69

Browse files
committed
Do not apply fzf workaround to enter insert mode when neovim >= 0.4.
The original issue was fixed in neovim 0.4. Close #793.
1 parent 3e182e7 commit 0ed9b69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/LanguageClient.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ function! s:FZF(source, sink) abort
210210
\ 'sink': function(a:sink),
211211
\ 'options': l:options,
212212
\ }))
213-
if has('nvim')
213+
if has('nvim') && !has('nvim-0.4')
214214
call feedkeys('i')
215215
endif
216216
endfunction

0 commit comments

Comments
 (0)