diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2024-01-31 00:11:16 +0400 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2024-03-19 02:20:53 +0100 |
commit | 8860d00641dd12bee0eab8ac544e65db27dfbf79 (patch) | |
tree | f5cf793e6962a0c8796196b4d597a02714225924 /CHANGELOG.md | |
parent | f53109a9d6d802a40d0a1f3ff1b860d836dcff9c (diff) | |
download | alacritty-8860d00641dd12bee0eab8ac544e65db27dfbf79.tar.gz alacritty-8860d00641dd12bee0eab8ac544e65db27dfbf79.zip |
Don't use kitty sequences outside protocol
Originally kitty defined that functional keys, which are not encoded
by default, like `Pause` should be encoded with `CSI u`. However
the specification was clarified and now it says that terminal
may ignore that part. Given that Alacritty tries to follow xterm/urxvt
when it comes to bindings, CSI u bindings are not send for consistency
reasons.
This also brings back F13-F20 bindings used by Alacritty in 0.12.3, as
well as explicitly defines `NumpadEnter` like it was before.
Closes #7623.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3af8cbfb..846d7594 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - No unused-key warnings will be emitted for OS-specific config keys - Use built-in font for sextant symbols from `U+1FB00` to `U+1FB3B` +- Kitty encoding is not used anymore for uncommon keys unless the protocol enabled ## 0.13.1 |