FIX mu4e attachment function (broke in mu 1.6)
This commit is contained in:
parent
722a3f1742
commit
bec6416797
|
@ -4068,6 +4068,13 @@ Since I use vi mode in my terminal emulator, need to preserve the escape key's r
|
||||||
"gj" #'lispy-down
|
"gj" #'lispy-down
|
||||||
"gk" #'lispy-up))
|
"gk" #'lispy-up))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
**** mu4e
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
;; the old open attachment function broke in mu 1.6, fix it here
|
||||||
|
(nd/when-bin "mu"
|
||||||
|
(evil-define-key '(normal) mu4e-view-mode-map
|
||||||
|
"p" 'mu4e-view-mime-part-action))
|
||||||
|
#+end_src
|
||||||
** local
|
** local
|
||||||
These are for mode-specific bindings that can/should be outside of the evil maps above (there are not many, and these may be merged with their evil bretheren in the future).
|
These are for mode-specific bindings that can/should be outside of the evil maps above (there are not many, and these may be merged with their evil bretheren in the future).
|
||||||
*** org-mode
|
*** org-mode
|
||||||
|
|
Loading…
Reference in New Issue