From: Carl Worth Date: Sat, 5 Jun 2010 00:16:53 +0000 (-0700) Subject: Add C-tab binding in notmuch-search mode as well. X-Git-Tag: 0.4~114 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=42e146a3a20c1ca2e1a9d6fd2d5e5e9d03a06641 Add C-tab binding in notmuch-search mode as well. We recently added this to notmuch-hello mode so we might as well support it in this mode as well for consistency. --- diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index d66894ae..f872cdfe 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -556,6 +556,7 @@ function is used. " (let ((map (make-sparse-keymap))) (define-key map "?" 'notmuch-help) (define-key map "q" 'kill-this-buffer) + (define-key map (kbd "") 'widget-backward) (define-key map (kbd "M-TAB") 'notmuch-show-previous-button) (define-key map (kbd "") 'notmuch-show-previous-button) (define-key map (kbd "TAB") 'notmuch-show-next-button)