13 lines
205 B
EmacsLisp
13 lines
205 B
EmacsLisp
|
;;; app/email/autoload.el
|
||
|
|
||
|
;;;###autoload
|
||
|
(defun =email ()
|
||
|
(interactive)
|
||
|
(call-interactively 'mu4e))
|
||
|
|
||
|
;;;###autoload
|
||
|
(defun +email/compose ()
|
||
|
(interactive)
|
||
|
(call-interactively 'mu4e-compose-new))
|
||
|
|