aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-06-04 17:16:53 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-06-04 17:16:53 -0700
commit42e146a3a20c1ca2e1a9d6fd2d5e5e9d03a06641 (patch)
tree3908d505931ebf937076a40195df151f9cd4906c /emacs
parentd64d0cc8d9f9e9f23fa4432328db2ea4739bae0f (diff)
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.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/notmuch-show.el1
1 files changed, 1 insertions, 0 deletions
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 "<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)