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

@ -49,6 +49,13 @@
### Changed
* Kitty keyboard protocol: F3 is now encoded as `CSI 13~` instead of
`CSI R`. The kitty keyboard protocol originally allowed F3 to be
encoded as `CSI R`, but this was removed from the specification
since `CSI R` conflicts with the _”Cursor Position Report”_.
### Deprecated
### Removed
### Fixed