Skip to content

Commit

Permalink
Revert "fix: set cursor style sequence (#229)" (#231)
Browse files Browse the repository at this point in the history
This reverts commit d8ba93c.
  • Loading branch information
aymanbagabas authored Oct 30, 2024
1 parent dc6745b commit a49550d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansi/cursor.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a49550d

Please sign in to comment.