kitty: F3 is no longer allowed to emit CSI R

The original kitty keyboard specification allowed F3 to emit either
CSI R, or CSI 13~.

Support for CSI R was removed in later revisions of the protocol,
since it collides with "Cursor Position Report" sequences.
This commit is contained in:
Daniel Eklöf 2023-04-26 18:28:07 +02:00
parent dc7642f2a5
commit c13495e26e
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 8 additions and 1 deletions

View file

@ -70,7 +70,7 @@ static const struct kitty_key_data kitty_keymap[] = {
{XKB_KEY_F1, 1, 'P', false},
{XKB_KEY_F2, 1, 'Q', false},
{XKB_KEY_F3, 1, 'R', false},
{XKB_KEY_F3, 13, '~', false},
{XKB_KEY_F4, 1, 'S', false},
{XKB_KEY_F5, 15, '~', false},
{XKB_KEY_F6, 17, '~', false},