mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 02:18:07 +01:00
emacs: Autoload notmuch-user-agent related functions
With this change, users with mail-user-agent set to 'notmuch-user-agent can start composing emails without having to require 'notmuch-mua first.
This commit is contained in:
parent
d1ba5d6342
commit
8d06dfce17
1 changed files with 5 additions and 0 deletions
|
@ -401,6 +401,7 @@ instead of `message-mode' and SWITCH-FUNCTION is mandatory."
|
|||
(addr (and good-tokens (mapconcat #'identity good-tokens ", "))))
|
||||
(message-replace-header header addr))))))
|
||||
|
||||
;;;#autoload
|
||||
(defun notmuch-mua-mail (&optional to subject other-headers _continue
|
||||
switch-function yank-action send-actions
|
||||
return-action &rest _ignored)
|
||||
|
@ -622,20 +623,24 @@ unencrypted. Really send? "))))
|
|||
(message-send-and-exit arg)
|
||||
(message-send arg)))))
|
||||
|
||||
;;;#autoload
|
||||
(defun notmuch-mua-send-and-exit (&optional arg)
|
||||
(interactive "P")
|
||||
(notmuch-mua-send-common arg t))
|
||||
|
||||
;;;#autoload
|
||||
(defun notmuch-mua-send (&optional arg)
|
||||
(interactive "P")
|
||||
(notmuch-mua-send-common arg))
|
||||
|
||||
;;;#autoload
|
||||
(defun notmuch-mua-kill-buffer ()
|
||||
(interactive)
|
||||
(message-kill-buffer))
|
||||
|
||||
;;; _
|
||||
|
||||
;;;#autoload
|
||||
(define-mail-user-agent 'notmuch-user-agent
|
||||
'notmuch-mua-mail
|
||||
'notmuch-mua-send-and-exit
|
||||
|
|
Loading…
Reference in a new issue