feat(mu4e): reintroduce A and p view keybindings
When viewing a message, in mu4e < 1.6 'A' gives actions that can be performed on the attachments, and 'p' / 'P' save attachments. The functions are removed in 1.6, and their nearest replacements are not bound. I think it makes sense to actually bind them.
This commit is contained in:
parent
6b5c34a1db
commit
47be8e292e
1 changed files with 6 additions and 0 deletions
|
@ -181,6 +181,12 @@
|
|||
(map! :map mu4e-headers-mode-map
|
||||
:vne "l" #'+mu4e/capture-msg-to-agenda)
|
||||
|
||||
;; Functionality otherwise obscured in mu4e 1.6
|
||||
(when (version<= "1.6" mu4e-mu-version)
|
||||
(map! :map mu4e-view-mode-map
|
||||
:ne "A" #'mu4e-view-mime-part-action
|
||||
:ne "p" #'mu4e-view-save-attachments))
|
||||
|
||||
(map! :localleader
|
||||
:map mu4e-compose-mode-map
|
||||
:desc "send and exit" "s" #'message-send-and-exit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue