mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
add command to select From email via ivy prior to composing
This commit is contained in:
@ -86,6 +86,14 @@
|
||||
(notmuch-tree-add-tag (list "+spam" "-inbox" "-unread"))
|
||||
(notmuch-tree-next-message))
|
||||
|
||||
;;;###autoload
|
||||
(defun +notmuch/ivy-compose ()
|
||||
"Compose new mail"
|
||||
(interactive)
|
||||
(ivy-read "From: "
|
||||
(notmuch-user-emails)
|
||||
:action (lambda (selection) (notmuch-mua-mail nil nil (list (cons 'From selection))))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +notmuch/open-message-with-mail-app-notmuch-tree ()
|
||||
(interactive)
|
||||
|
Reference in New Issue
Block a user