aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/notmuch-hello.el
diff options
context:
space:
mode:
authorGravatar David Edmondson <dme@dme.org>2010-04-29 11:57:04 +0100
committerGravatar Carl Worth <cworth@cworth.org>2010-06-03 17:08:27 -0700
commit0ffea4297fa76abb94372acd5b57a12014780ae4 (patch)
treea1fcf94879f346903a4511712ecc3a95b52df11f /emacs/notmuch-hello.el
parentc9eb047c6ca2e1c0ef48560110a53ed1acb6330f (diff)
emacs: In hello mode, bind `C-tab' to move backwards through widgets.
`C-tab' is now the inverse operation to `tab'.
Diffstat (limited to 'emacs/notmuch-hello.el')
-rw-r--r--emacs/notmuch-hello.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el
index acf40bc4..79e3d5ff 100644
--- a/emacs/notmuch-hello.el
+++ b/emacs/notmuch-hello.el
@@ -448,6 +448,7 @@ should be. Returns a cons cell `(tags-per-line width)'."
(use-local-map widget-keymap)
(local-set-key "=" 'notmuch-hello-update)
+ (local-set-key (kbd "<C-tab>") 'widget-backward)
(local-set-key "G" 'notmuch-hello-poll-and-update)
(local-set-key "m" 'notmuch-mua-mail)
(local-set-key "q" '(lambda () (interactive) (kill-buffer (current-buffer))))