Mu4e: Avoid conflict in mu4e view action name

The HTML and PDF views already bind to v/V
This commit is contained in:
TEC 2020-10-22 00:24:26 +08:00
parent 8e4f559a52
commit b6f5494601
No known key found for this signature in database
GPG key ID: 779591AFDB81F06C

View file

@ -157,6 +157,8 @@
;; Html mails might be better rendered in a browser
(add-to-list 'mu4e-view-actions '("View in browser" . mu4e-action-view-in-browser))
(when (fboundp 'make-xwidget)
(add-to-list 'mu4e-view-actions '("xwidgets view" . mu4e-action-view-with-xwidget)))
;; The header view needs a certain amount of horizontal space to
;; actually show you all the information you want to see
@ -173,10 +175,6 @@
(when (fboundp 'imagemagick-register-types)
(imagemagick-register-types))
(when (fboundp 'make-xwidget)
(push '("view with xwidgets" . mu4e-action-view-with-xwidget)
mu4e-view-actions))
(map! :map mu4e-main-mode-map
:ne "h" #'+workspace/other)