summaryrefslogtreecommitdiff
path: root/plugin/fzf.vim
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-01-22 03:10:06 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-01-22 03:10:06 +0900
commit5130abe76fe4afc9fe22df023fd3d3e715dcc014 (patch)
treeb3714da3ab2e73f5be4aed299ddd7dafa082007a /plugin/fzf.vim
parent24fa183297865aadab0fb91e1ea0bb4fb1491db4 (diff)
parentfa7c8977a85b08eee660f42f8bf52628166e422f (diff)
downloadfzf-5130abe76fe4afc9fe22df023fd3d3e715dcc014.tar.gz
Merge branch 'master' into devel
Diffstat (limited to 'plugin/fzf.vim')
-rw-r--r--plugin/fzf.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/fzf.vim b/plugin/fzf.vim
index 4064a559..8778c785 100644
--- a/plugin/fzf.vim
+++ b/plugin/fzf.vim
@@ -430,7 +430,7 @@ function! s:execute(dict, command, use_height, temps) abort
endif
if a:use_height
let stdin = has_key(a:dict, 'source') ? '' : '< /dev/tty'
- call system(printf('tput cup %d > /dev/tty; tput cnorm > /dev/tty; %s %s 2> /dev/tty', &lines, command, stdin))
+ call system(printf('tput cup %d > /dev/tty; tput cnorm > /dev/tty; tput el > /dev/tty; %s %s 2> /dev/tty', &lines, command, stdin))
else
execute 'silent !'.command
endif