aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.el
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-13 15:53:58 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-13 15:54:58 -0800
commit4812cfb368cddbb4265e6d55d8eb2d6b83fde1fe (patch)
treee5835ff5145b8a8a6929affc3890a3199750f26f /notmuch.el
parent77088624afec33ab8398d97f79fa620878817688 (diff)
notmuch.el: Add an 'm' binding to start composing a new mail.
Available from either the "search" or the "show" view.
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 6c39ec7e..e70a1fc5 100644
--- a/notmuch.el
+++ b/notmuch.el
@@ -35,6 +35,7 @@
(define-key map "b" 'notmuch-show-toggle-body-read-visible)
(define-key map "c" 'notmuch-show-toggle-citations-visible)
(define-key map "h" 'notmuch-show-toggle-headers-visible)
+ (define-key map "m" 'message-mail)
(define-key map "n" 'notmuch-show-next-message)
(define-key map "N" 'notmuch-show-mark-read-then-next-open-message)
(define-key map "p" 'notmuch-show-previous-message)
@@ -614,6 +615,7 @@ thread from that buffer can be show when done with this one)."
(define-key map "a" 'notmuch-search-archive-thread)
(define-key map "b" 'notmuch-search-scroll-down)
(define-key map "f" 'notmuch-search-filter)
+ (define-key map "m" 'message-mail)
(define-key map "n" 'next-line)
(define-key map "o" 'notmuch-search-toggle-order)
(define-key map "p" 'previous-line)