fix: restore cursor-hide in initialize-backend (no more cursor-style)

This commit is contained in:
2026-05-16 18:22:07 -04:00
parent e115a88690
commit f76f637548

View File

@@ -128,8 +128,7 @@ as a fallback when a keyword is not in *named-colors*.")
(backend-write b (format nil "~C[?1006h" #\Esc)) ; SGR mouse (backend-write b (format nil "~C[?1006h" #\Esc)) ; SGR mouse
(backend-write b (format nil "~C[?2004h" #\Esc)) ; bracketed paste (backend-write b (format nil "~C[?2004h" #\Esc)) ; bracketed paste
(backend-write b (format nil "~C[?u" #\Esc)) ; kitty keyboard (backend-write b (format nil "~C[?u" #\Esc)) ; kitty keyboard
(cursor-style b :block :blink t) (cursor-hide b)
(cursor-show b)
(finish-output (backend-output-stream b)) (finish-output (backend-output-stream b))
b) b)