Skip to content
Snippets Groups Projects
Unverified Commit dd156b59 authored by Junegunn Choi's avatar Junegunn Choi
Browse files

Fix display issues with execute action

- Move cursor to the top-left corner when starting a command in
  alternate screen
- Fix cursor position when returning to alternate screen when fzf is
  running in full screen mode
parent 36dceecd
No related branches found
No related tags found
No related merge requests found
......@@ -1141,6 +1141,7 @@ func (t *Terminal) executeCommand(template string, forcePlus bool, background bo
t.tui.Pause()
cmd.Run()
if t.tui.Resume() {
t.tui.Clear()
t.printAll()
}
t.refresh()
......
......@@ -534,6 +534,7 @@ func (r *LightRenderer) Pause() {
r.rmcup()
} else {
r.smcup()
r.csi("H")
}
r.flush()
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment