summaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-12-03 12:51:10 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-12-03 23:32:43 +0900
commit54a026525a061ec869f3e18aa7d118165defbcab (patch)
treef239e36667ff4c701d2205884bce8560ece86815 /plugin
parentd6588fc835aff6d952d86b1bdc5ed7378a846ab9 (diff)
[vim] Remove unnecessary term_wait workaround
The issue is fixed in https://github.com/vim/vim/commit/1232624ae5b56c167c5982a2620f736c4bbc19ef
Diffstat (limited to 'plugin')
-rw-r--r--plugin/fzf.vim3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugin/fzf.vim b/plugin/fzf.vim
index 0dbfe904..8c3932f7 100644
--- a/plugin/fzf.vim
+++ b/plugin/fzf.vim
@@ -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