diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-06-07 22:09:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-07 22:09:22 +0000 |
commit | 527dc8f564823d3dd01f79f22614271c7f3bc518 (patch) | |
tree | aa8555499ec2f40c291c0c7634d0cd1f8b63b9a6 /CHANGELOG.md | |
parent | f2b1bfdf37aea62e79b1791127eaf1507edfecd9 (diff) | |
download | alacritty-527dc8f564823d3dd01f79f22614271c7f3bc518.tar.gz alacritty-527dc8f564823d3dd01f79f22614271c7f3bc518.zip |
Fix ncurses backspace key
Ncurses does some special handling for backspace, normally comparing it
to the KEY_BACKSPACE constant. However to make this work, the right
backspace escape sequence needs to be set in the terminfo.
XTerm has this set to ^H, but it always sends ^H. Since Alacritty
usually sends ^? instead, this needs to be specified to allow correct
interpretation for ncurses.
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 2a60263e..bd8802df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Text getting recognized as URLs without slashes separating the scheme - URL parser dropping trailing slashes from valid URLs - UTF-8 BOM skipped when reading config file +- Terminfo backspace escape sequence (`kbs`) ### Removed |