Skip to content

Commit 6f3ce7b

Browse files
committed
comment
1 parent fdb7346 commit 6f3ce7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/input/KittyKeyboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ export class KittyKeyboard {
458458
useCsiU = true;
459459
} else if (flags & KittyKeyboardFlags.DISAMBIGUATE_ESCAPE_CODES) {
460460
// 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
461+
// mode" and consider space to be a text-generating key, so these skip the isFunc fast-path
462462
// and only get CSI u when modifiers are present (handled below).
463463
const isDisambiguateLegacy = keyCode === 13 || keyCode === 9 || keyCode === 127;
464464
if (isFunc && !isDisambiguateLegacy) {

0 commit comments

Comments
 (0)