From ef637cd7d3f5e80d3e9ac6a9543c074cd9808bc8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 28 Feb 2022 11:28:42 +0530 Subject: [PATCH] ... --- kitty/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/utils.py b/kitty/utils.py index f2acd1d7f..e4abe7f62 100644 --- a/kitty/utils.py +++ b/kitty/utils.py @@ -892,7 +892,7 @@ def hold_till_enter() -> None: from kittens.tui.operations import init_state, set_cursor_visible fd, original_termios = open_tty() - msg = '\n\r\x1b[1;32mPress Enter or Esc to exit' + msg = '\n\r\x1b[1;32mPress Enter or Esc to exit\x1b[m' write_all(fd, msg) write_all(fd, init_state(alternate_screen=False, kitty_keyboard_mode=False) + set_cursor_visible(False)) with no_echo(fd):