fix(input): Handle numpad enter key in kitty protocol terminals (#6341)

Co-authored-by: Jacob Richman <jacob314@gmail.com>
This commit is contained in:
Deepankar Sharma 2025-08-15 15:30:57 -04:00 committed by GitHub
parent 2c07dc0757
commit f5a5cdd973
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 319 additions and 1 deletions

View file

@ -17,6 +17,12 @@
*/
export const KITTY_CTRL_C = '[99;5u';
/**
* Kitty keyboard protocol keycodes
*/
export const KITTY_KEYCODE_ENTER = 13;
export const KITTY_KEYCODE_NUMPAD_ENTER = 57414;
/**
* Timing constants for terminal interactions
*/