From be2918a6164989aba5b18b4f642501ddb8801c10 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Thu, 21 Mar 2019 21:19:34 -0400 Subject: [PATCH] Use GetCursorPos instead of stored position --- widgets/terminal.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/widgets/terminal.go b/widgets/terminal.go index 5b0be1a..7aaeda0 100644 --- a/widgets/terminal.go +++ b/widgets/terminal.go @@ -131,6 +131,7 @@ func NewTerminal(cmd *exec.Cmd) (*Terminal, error) { return } screen.Flush() + term.flushTerminal() term.Invalidate() } }() @@ -290,7 +291,9 @@ func (term *Terminal) Draw(ctx *ui.Context) { if !term.cursorShown { ctx.HideCursor() } else { - ctx.SetCursor(term.cursorPos.Col(), term.cursorPos.Row()) + state := term.vterm.ObtainState() + row, col := state.GetCursorPos() + ctx.SetCursor(col, row) } }