From: Léo Gaspard Date: Sat, 27 Oct 2018 01:52:24 +0000 (+0900) Subject: add r/R key swap instructions for tree-mode X-Git-Url: https://git.notmuchmail.org/git?p=notmuch-wiki;a=commitdiff_plain;h=eb582e4c263fa93196854c7c632687f186c4c8af add r/R key swap instructions for tree-mode --- diff --git a/emacstips.mdwn b/emacstips.mdwn index 47f53e5..b41faed 100644 --- a/emacstips.mdwn +++ b/emacstips.mdwn @@ -156,11 +156,15 @@ reply-to-all. Here's how to swap the reply to sender/all bindings in show mode: (define-key notmuch-show-mode-map "r" 'notmuch-show-reply) (define-key notmuch-show-mode-map "R" 'notmuch-show-reply-sender) -And in search mode: +In search mode: (define-key notmuch-search-mode-map "r" 'notmuch-search-reply-to-thread) (define-key notmuch-search-mode-map "R" 'notmuch-search-reply-to-thread-sender) +And in tree mode: + + (define-key notmuch-tree-mode-map "r" (notmuch-tree-close-message-pane-and #'notmuch-show-reply)) + (define-key notmuch-tree-mode-map "R" (notmuch-tree-close-message-pane-and #'notmuch-show-reply-sender)) ## How to do FCC/BCC...