diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | config/binds.go | 1 | ||||
-rw-r--r-- | doc/aerc-binds.5.scd | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 33876008..6291761d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Add a `-A` option to `:save` for saving all the named parts, not just attachments +- Add `<Backspace>` key to bindings - Colorize can style diff chunk function names with `diff_chunk_func`. - Warn before sending emails with an empty subject with `empty-subject-warning` in `aerc.conf`. diff --git a/config/binds.go b/config/binds.go index 79369247..55814cd2 100644 --- a/config/binds.go +++ b/config/binds.go @@ -442,6 +442,7 @@ var keyNames = map[string]KeyStroke{ "end": {tcell.ModNone, tcell.KeyEnd, 0}, "insert": {tcell.ModNone, tcell.KeyInsert, 0}, "delete": {tcell.ModNone, tcell.KeyDelete, 0}, + "backspace": {tcell.ModNone, tcell.KeyBackspace2, 0}, "help": {tcell.ModNone, tcell.KeyHelp, 0}, "exit": {tcell.ModNone, tcell.KeyExit, 0}, "clear": {tcell.ModNone, tcell.KeyClear, 0}, diff --git a/doc/aerc-binds.5.scd b/doc/aerc-binds.5.scd index ee92d760..71440251 100644 --- a/doc/aerc-binds.5.scd +++ b/doc/aerc-binds.5.scd @@ -169,6 +169,8 @@ special keys are supported: : Insert | *<delete>* : Delete +| *<backspace>* +: Backspace | *<exit>* : Exit | *<cancel>* |