From f94146bd39f0453b8b31f690e1ebb8f8860468f8 Mon Sep 17 00:00:00 2001 From: Keith Amidon Date: Fri, 27 Nov 2009 05:30:15 -0800 Subject: [PATCH 1/1] Key binding rearrangement for save attachments in show mode The most obvious bindings for save attachments are already taken. The existing 'w' binding was bound to view the raw message. This commit moves it to 'V' which still seems somewhat mnemonic and uses 'w' for save (write) attachments. --- notmuch.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/notmuch.el b/notmuch.el index a1c98a56..fecad676 100644 --- a/notmuch.el +++ b/notmuch.el @@ -73,7 +73,8 @@ (define-key map "r" 'notmuch-show-reply) (define-key map "s" 'notmuch-search) (define-key map "v" 'notmuch-show-view-all-mime-parts) - (define-key map "w" 'notmuch-show-view-raw-message) + (define-key map "V" 'notmuch-show-view-raw-message) + (define-key map "w" 'notmuch-show-save-attachments) (define-key map "x" 'kill-this-buffer) (define-key map "+" 'notmuch-show-add-tag) (define-key map "-" 'notmuch-show-remove-tag) -- 2.43.0