From f6aa28c380b5adda251fa9fe33dfb4a2ae721b1f Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 3 May 2024 11:56:54 +0900 Subject: Fix --info inline-right not properly clearing the previous output (seq 100000; sleep 1) | fzf --info inline-right --bind load:change-query:x --- src/terminal.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/terminal.go b/src/terminal.go index e9ec363b..932553ed 100644 --- a/src/terminal.go +++ b/src/terminal.go @@ -1715,9 +1715,11 @@ func (t *Terminal) printInfo() { if t.infoStyle == infoInlineRight { if len(t.infoPrefix) == 0 { - pos = util.Max(pos, t.window.Width()-util.StringWidth(output)-3) + t.move(line, pos, false) + newPos := util.Max(pos, t.window.Width()-util.StringWidth(output)-3) + t.window.Print(strings.Repeat(" ", newPos-pos)) + pos = newPos if pos < t.window.Width() { - t.move(line, pos, false) printSpinner() pos++ } -- cgit v1.2.3