diff options
| author | Léo Gaspard <leo@gaspard.io> | 2018-10-27 10:52:24 +0900 |
|---|---|---|
| committer | Léo Gaspard <leo@gaspard.io> | 2018-10-27 10:52:24 +0900 |
| commit | eb582e4c263fa93196854c7c632687f186c4c8af (patch) | |
| tree | 81f0c76232c120f9878ca2ad0f0c7a059dda5709 | |
| parent | 4dd17aeef3ee8db115690c23243bb4510ff416de (diff) | |
add r/R key swap instructions for tree-mode
| -rw-r--r-- | emacstips.mdwn | 6 |
1 files changed, 5 insertions, 1 deletions
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... |
