]> git.notmuchmail.org Git - notmuch/commitdiff
Key binding rearrangement for save attachments in show mode
authorKeith Amidon <keith@nicira.com>
Fri, 27 Nov 2009 13:30:15 +0000 (05:30 -0800)
committerCarl Worth <cworth@cworth.org>
Sat, 28 Nov 2009 05:24:03 +0000 (21:24 -0800)
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

index a1c98a56c4dffa1b70603b95a180275d1c83feff..fecad676a269e1fe7d0fa38b6492fb611bfc8bc6 100644 (file)
@@ -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 "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)
     (define-key map "x" 'kill-this-buffer)
     (define-key map "+" 'notmuch-show-add-tag)
     (define-key map "-" 'notmuch-show-remove-tag)