summaryrefslogtreecommitdiffstats
path: root/init.org
diff options
context:
space:
mode:
authorAmin Bandali <amin@gnu.org>2018-08-18 16:03:09 -0400
committerAmin Bandali <amin@gnu.org>2018-08-18 16:03:09 -0400
commite473bc2094947be1b104aad25c3d04400452ed8a (patch)
treecbacbe20fb74ffde23ae6677e30855e8cc2eaf8c /init.org
parent25bd9e84a1abb4039767c41c0c07d56230874c70 (diff)
downloadconfigs-e473bc2094947be1b104aad25c3d04400452ed8a.tar.gz
configs-e473bc2094947be1b104aad25c3d04400452ed8a.tar.xz
configs-e473bc2094947be1b104aad25c3d04400452ed8a.zip
[emacs/notmuch] bind "e" in notmuch-hello-mode-map
Diffstat (limited to 'init.org')
-rw-r--r--init.org14
1 files changed, 9 insertions, 5 deletions
diff --git a/init.org b/init.org
index f6113e0..6575a91 100644
--- a/init.org
+++ b/init.org
@@ -1285,18 +1285,22 @@ See [[notmuch:id:87muuqsvci.fsf@fencepost.gnu.org][bug follow-up]].
:bind
(:map notmuch-hello-mode-map
("g" . notmuch-poll-and-refresh-this-buffer)
- ("i" . (lambda ()
- "Search for `inbox' tagged messages"
- (interactive)
- (notmuch-hello-search "tag:inbox")))
("u" . (lambda ()
"Search for `unread' tagged messages"
(interactive)
(notmuch-hello-search "tag:unread")))
+ ("i" . (lambda ()
+ "Search for `inbox' tagged messages"
+ (interactive)
+ (notmuch-hello-search "tag:inbox")))
("l" . (lambda ()
- "Search for `latest tagged messages"
+ "Search for `latest' tagged messages"
(interactive)
(notmuch-hello-search "tag:latest")))
+ ("e" . (lambda ()
+ "Search for `encrypted' tagged messages"
+ (interactive)
+ (notmuch-hello-search "tag:encrypted")))
("M" . (lambda ()
"Compose new mail and prompt for sender"
(interactive)