From 1e384900fa44be63c7c8e08ad9ae61e61c917cd8 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sun, 29 Dec 2024 14:20:55 +0100 Subject: [PATCH] kitty kbd: stop parsing CSI R as F3 This has been removed, see kitty commit cd92d50a0 (Keyboard protocol: Remove CSI R from the allowed encodings of the F3 key as it conflicts with the *Cursor Position Report* escape code, 2022-12-24). --- src/input_common.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/input_common.rs b/src/input_common.rs index 27f7ff5aa..3602e385d 100644 --- a/src/input_common.rs +++ b/src/input_common.rs @@ -938,7 +938,6 @@ fn parse_csi(&mut self, buffer: &mut Vec) -> Option { } b'P' => masked_key(function_key(1), None), b'Q' => masked_key(function_key(2), None), - b'R' => masked_key(function_key(3), None), b'S' => masked_key(function_key(4), None), b'~' => match params[0][0] { 1 => masked_key(key::Home, None), // VT220/tmux style