From fa7c8977a85b08eee660f42f8bf52628166e422f Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 22 Jan 2017 03:03:26 +0900 Subject: [vim] tput el to clear the last line Close #814 Not grouping commands to avoid errors on non-standard shells. --- plugin/fzf.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3