From: David Edmondson Date: Thu, 29 Apr 2010 10:57:04 +0000 (+0100) Subject: emacs: In hello mode, bind `C-tab' to move backwards through widgets. X-Git-Tag: 0.4~135 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=0ffea4297fa76abb94372acd5b57a12014780ae4 emacs: In hello mode, bind `C-tab' to move backwards through widgets. `C-tab' is now the inverse operation to `tab'. --- 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 "") '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))))