From 364bad504c062d7b61dbcc02185156dc0359a1c6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 25 Jan 2022 13:29:44 +0530 Subject: [PATCH] CSI 0 q should blink cursor as per xterm docs and behavior --- kitty/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/screen.c b/kitty/screen.c index 6de09427f..7d73077c8 100644 --- a/kitty/screen.c +++ b/kitty/screen.c @@ -1943,7 +1943,7 @@ screen_set_cursor(Screen *self, unsigned int mode, uint8_t secondary) { case '"': // DECCSA break; case ' ': // DECSCUSR - shape = 0; blink = false; + shape = 0; blink = true; if (mode > 0) { blink = mode % 2; shape = (mode < 3) ? CURSOR_BLOCK : (mode < 5) ? CURSOR_UNDERLINE : (mode < 7) ? CURSOR_BEAM : NO_CURSOR_SHAPE;