mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-22 21:05:09 +00:00
[vim] tput el to clear the last line
Close #814 Not grouping commands to avoid errors on non-standard shells.
This commit is contained in:
parent
a06ccc928f
commit
fa7c8977a8
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user