]> git.notmuchmail.org Git - notmuch/commitdiff
emacs: drop C-tab binding in hello mode, document <backtab>.
authorDavid Bremner <david@tethera.net>
Sat, 30 Oct 2021 18:58:16 +0000 (15:58 -0300)
committerDavid Bremner <david@tethera.net>
Sat, 4 Dec 2021 00:28:12 +0000 (20:28 -0400)
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]: 703dec7754da477b5683867c88cb940b8553be91.

doc/notmuch-emacs.rst
emacs/notmuch-hello.el

index 12ee25e5ba10795315dfb3e3373f5d11968693b5..22aee340c62061e31a582c3110468a019a6098d3 100644 (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>``
index 71487bd97b8795b71747594f98bcd54ed821a976..acd48c9bc2b56b59b32bb5df4a3d956522acddc3 100644 (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.")