From a49550dd4e50928359e685921144729d173b780e Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Wed, 30 Oct 2024 11:13:39 -0400 Subject: [PATCH] Revert "fix: set cursor style sequence (#229)" (#231) This reverts commit d8ba93caff908025ff8ddf7d34c97e9447557078. --- ansi/cursor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansi/cursor.go b/ansi/cursor.go index e8c589ab..8a917b2d 100644 --- a/ansi/cursor.go +++ b/ansi/cursor.go @@ -227,7 +227,7 @@ func SetCursorStyle(style int) string { if style < 0 { style = 0 } - return "\x1b[" + strconv.Itoa(style) + "q" + return "\x1b[" + strconv.Itoa(style) + " q" } // SetPointerShape returns a sequence for changing the mouse pointer cursor