mu4e: define mu4e-view-actions with defcustom instead of defvar

It allows the customization directly from Emacs Custom mode.  It is
done in a similar way as for `mu4e-view-attachment-actions'.
This commit is contained in:
Pedro Ribeiro Mendes Júnior 2019-12-31 13:20:15 -03:00
parent 4dc35247d1
commit 7b5195da89
1 changed files with 4 additions and 2 deletions

View File

@ -109,7 +109,7 @@ directory and saves all attachments in the chosen directory."
:type 'boolean
:group 'mu4e-view)
(defvar mu4e-view-actions
(defcustom mu4e-view-actions
'( ("capture message" . mu4e-action-capture-message)
("view as pdf" . mu4e-action-view-as-pdf)
("show this thread" . mu4e-action-show-thread))
@ -120,7 +120,9 @@ where:
* NAME is the name of the action (e.g. \"Count lines\")
* FUNC is a function which receives a message plist as an argument.
The first letter of NAME is used as a shortcut character.")
The first letter of NAME is used as a shortcut character."
:group 'mu4e-view
:type '(alist :key-type string :value-type function))
(defcustom mu4e-view-attachment-assoc nil
"Alist of (EXTENSION . PROGRAM).