diff options
| author | Jani Nikula <jani@nikula.org> | 2012-01-14 18:22:44 +0200 |
|---|---|---|
| committer | Jani Nikula <jani@nikula.org> | 2012-01-14 18:22:44 +0200 |
| commit | 84e85c9029de268dd9df15e4b054dc2047ad107d (patch) | |
| tree | f1a6d5108c45fc3c9ed7ed758ce0ab558ed0f40e | |
| parent | 8d3942dde2b3f4b84c27c36e6357e86b3f117c49 (diff) | |
emacstips: how to change reply to all/sender key bindings
| -rw-r--r-- | emacstips.mdwn | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/emacstips.mdwn b/emacstips.mdwn index e12036d..6275f18 100644 --- a/emacstips.mdwn +++ b/emacstips.mdwn @@ -168,6 +168,20 @@ key: (notmuch-show-remove-tag "deleted") (notmuch-show-add-tag "deleted")))) +## Restore reply-to-all key binding to 'r' + +Starting from notmuch 0.12 the 'r' key is bound to reply-to-sender instead of +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: + + (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) + + ## How to do FCC/BCC... The Emacs interface to notmuch will automatically add an `Fcc` |
