diff options
author | Kyle Meyer <kyle@kyleam.com> | 2018-06-14 11:33:34 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2018-06-14 11:34:07 -0400 |
commit | 4c8aa545f3d2bf0f89a998b0eb853059bfe40479 (patch) | |
tree | e019cb7ecd67e83fe1e322c65bdde7f8f1bc36da | |
parent | 2fce8e5e85f754b12f5b72273541c2aeb4eb5bdd (diff) | |
download | emacs.d-4c8aa545f3d2bf0f89a998b0eb853059bfe40479.tar.gz |
Add bindings for notmuch-{show,tree}-resume-message
-rw-r--r-- | init.el | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2179,6 +2179,7 @@ (define-key notmuch-show-mode-map "o" #'notmuch-show-reply) (define-key notmuch-show-mode-map "O" #'notmuch-show-reply-sender) + (define-key notmuch-show-mode-map "E" #'notmuch-show-resume-message) (define-key notmuch-search-mode-map "o" #'notmuch-search-reply-to-thread) (define-key notmuch-search-mode-map "O" #'notmuch-search-reply-to-thread-sender) @@ -2188,6 +2189,7 @@ (notmuch-tree-close-message-pane-and #'notmuch-show-reply)) (define-key notmuch-tree-mode-map "O" (notmuch-tree-close-message-pane-and #'notmuch-show-reply-sender)) + (define-key notmuch-tree-mode-map "E" #'notmuch-tree-resume-message) (define-key notmuch-common-keymap "g" #'notmuch-refresh-this-buffer) |