diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2024-01-31 00:11:16 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-31 00:11:16 +0400 |
commit | 38d63abd5f227fe639ee0f9f0e3f1cf4d6207e28 (patch) | |
tree | 33d627ad3a57ae137f5123821fd231b1c94e9342 /CHANGELOG.md | |
parent | 7c046f5ae664f746c5f5a4bbe18c0e89f5702305 (diff) | |
download | alacritty-38d63abd5f227fe639ee0f9f0e3f1cf4d6207e28.tar.gz alacritty-38d63abd5f227fe639ee0f9f0e3f1cf4d6207e28.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 8c17768b..5473813c 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 |