From dc03c14af2a21c2b073d0f242e791100a2bd1ade Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 18 Jan 2023 08:49:41 +0530 Subject: [PATCH] Fix #5896 --- kittens/unicode_input/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kittens/unicode_input/main.py b/kittens/unicode_input/main.py index 72972b602..c12c7e8f6 100644 --- a/kittens/unicode_input/main.py +++ b/kittens/unicode_input/main.py @@ -412,7 +412,7 @@ class UnicodeInput(Handler): if self.mode is HEX: writeln(faint(_('Type {} followed by the index for the recent entries below').format(INDEX_CHAR))) elif self.mode is NAME: - writeln(faint(_('Use Tab or the arrow keys to choose a character from below'))) + writeln(faint(_('Use Tab or arrow keys to choose a character. Type space and {} to select by index').format(INDEX_CHAR))) elif self.mode is FAVORITES: writeln(faint(_('Press F12 to edit the list of favorites'))) self.table_at = y