emacs: drop C-tab binding in hello mode, document <backtab>.

The <backtab> binding has always been there, but the docs were
apparently mistakenly changed to say <backspace> [1]

Revert to <backtab> in the documentation.

The commit also drops the C-<tab> binding, since it seems redundant
and it interferes with tab-bar-mode.

[1]: 703dec7754.
This commit is contained in:
David Bremner 2021-10-30 15:58:16 -03:00
parent b264a49be3
commit 20b2ae1218
2 changed files with 1 additions and 2 deletions

View file

@ -56,7 +56,7 @@ notmuch-hello key bindings
``<tab>``
Move to the next widget (button or text entry field)
``<backspace>``
``<backtab>``
Move to the previous widget.
``<return>``

View file

@ -702,7 +702,6 @@ with `notmuch-hello-query-counts'."
;; that when we modify map it does not modify widget-keymap).
(let ((map (make-composed-keymap (list (make-sparse-keymap) widget-keymap))))
(set-keymap-parent map notmuch-common-keymap)
(define-key map (kbd "<C-tab>") 'widget-backward)
map)
"Keymap for \"notmuch hello\" buffers.")