We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdb7346 commit 6f3ce7bCopy full SHA for 6f3ce7b
src/common/input/KittyKeyboard.ts
@@ -458,7 +458,7 @@ export class KittyKeyboard {
458
useCsiU = true;
459
} else if (flags & KittyKeyboardFlags.DISAMBIGUATE_ESCAPE_CODES) {
460
// Per spec, Enter/Tab/Backspace "still generate the same bytes as in legacy
461
- // mode" and Space is a text-generating key, so these skip the isFunc fast-path
+ // mode" and consider space to be a text-generating key, so these skip the isFunc fast-path
462
// and only get CSI u when modifiers are present (handled below).
463
const isDisambiguateLegacy = keyCode === 13 || keyCode === 9 || keyCode === 127;
464
if (isFunc && !isDisambiguateLegacy) {
0 commit comments