Skip to content
Snippets Groups Projects
Unverified Commit 54a02652 authored by Junegunn Choi's avatar Junegunn Choi
Browse files

[vim] Remove unnecessary term_wait workaround

parent d6588fc8
No related branches found
No related tags found
No related merge requests found
......@@ -700,8 +700,7 @@ function! s:execute_term(dict, command, temps) abort
call termopen(command, fzf)
else
let t = term_start([&shell, &shellcmdflag, command], {'curwin': fzf.buf, 'exit_cb': function(fzf.on_exit)})
" FIXME: https://github.com/vim/vim/issues/1998
if !has('nvim') && !s:is_win
if !has('patch-8.0.1261') && !has('nvim') && !s:is_win
call term_wait(t, 20)
endif
endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment