diff --git a/modules/email/notmuch/autoload.el b/modules/email/notmuch/autoload.el index 12203587f..211e45957 100644 --- a/modules/email/notmuch/autoload.el +++ b/modules/email/notmuch/autoload.el @@ -87,12 +87,13 @@ (notmuch-tree-next-message)) ;;;###autoload -(defun +notmuch/ivy-compose () +(defun +notmuch/compose () "Compose new mail" (interactive) - (ivy-read "From: " - (notmuch-user-emails) - :action (lambda (selection) (notmuch-mua-mail nil nil (list (cons 'From selection)))))) + (notmuch-mua-mail + nil + nil + (list (cons 'From (completing-read "From: " (notmuch-user-emails)))))) ;;;###autoload (defun +notmuch/open-message-with-mail-app-notmuch-tree ()