summaryrefslogtreecommitdiff
path: root/notmuch.el
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2009-12-26 16:34:16 -0800
committerCarl Worth <cworth@cworth.org>2010-02-08 14:35:08 -0800
commitb58dcfb7026e7bc5dbc9c2333d07dcb11a9975aa (patch)
tree0feb59957bff2f59e0713ea4608cbc5a13cc5ef3 /notmuch.el
parent0a1e37a8c97ff8cc25a13e6f1a9989eecf30bde2 (diff)
Add 'm' and ' ' bindings to notmuch-folder view
This allows the user to compose new mail from the folder view, and also to use <space> to show the current folder. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'notmuch.el')
-rw-r--r--notmuch.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/notmuch.el b/notmuch.el
index 8fba25d..af45a21 100644
--- a/notmuch.el
+++ b/notmuch.el
@@ -1446,12 +1446,14 @@ current search results AND that are tagged with the given tag."
(define-key map "?" 'notmuch-help)
(define-key map "x" 'kill-this-buffer)
(define-key map "q" 'kill-this-buffer)
+ (define-key map "m" 'message-mail)
(define-key map ">" 'notmuch-folder-last)
(define-key map "<" 'notmuch-folder-first)
(define-key map "=" 'notmuch-folder)
(define-key map "s" 'notmuch-search)
(define-key map [mouse-1] 'notmuch-folder-show-search)
(define-key map (kbd "RET") 'notmuch-folder-show-search)
+ (define-key map " " 'notmuch-folder-show-search)
(define-key map "p" 'notmuch-folder-previous)
(define-key map "n" 'notmuch-folder-next)
map)