]> git.notmuchmail.org Git - notmuch/commitdiff
Add C-tab binding in notmuch-search mode as well.
authorCarl Worth <cworth@cworth.org>
Sat, 5 Jun 2010 00:16:53 +0000 (17:16 -0700)
committerCarl Worth <cworth@cworth.org>
Sat, 5 Jun 2010 00:16:53 +0000 (17:16 -0700)
We recently added this to notmuch-hello mode so we might as well
support it in this mode as well for consistency.

emacs/notmuch-show.el

index d66894ae38375821509025f8c22e0a5fb01a8c0e..f872cdfe00d44c1a498ad1ad46abe6b4ee84d1c4 100644 (file)
@@ -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 "<C-tab>") 'widget-backward)
        (define-key map (kbd "M-TAB") 'notmuch-show-previous-button)
        (define-key map (kbd "<backtab>") 'notmuch-show-previous-button)
        (define-key map (kbd "TAB") 'notmuch-show-next-button)