mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: Allow the user to choose the "From" address when composing a new message
When pressing C-u m, the user will be prompted for the identity to use.
This commit is contained in:
parent
fda6416745
commit
784649561a
4 changed files with 14 additions and 3 deletions
|
@ -298,7 +298,7 @@ should be. Returns a cons cell `(tags-per-line width)'."
|
|||
(define-key map "=" 'notmuch-hello-update)
|
||||
(define-key map "G" 'notmuch-hello-poll-and-update)
|
||||
(define-key map (kbd "<C-tab>") 'widget-backward)
|
||||
(define-key map "m" 'notmuch-mua-mail)
|
||||
(define-key map "m" 'notmuch-mua-new-mail)
|
||||
(define-key map "s" 'notmuch-hello-goto-search)
|
||||
map)
|
||||
"Keymap for \"notmuch hello\" buffers.")
|
||||
|
|
|
@ -161,6 +161,17 @@ name and addresses configured in the notmuch configuration file."
|
|||
(ido-completing-read "Send mail From: " collection
|
||||
nil 'confirm nil 'notmuch-mua-sender-history (car collection))))
|
||||
|
||||
(defun notmuch-mua-new-mail (&optional prompt-for-sender)
|
||||
"Invoke the notmuch mail composition window.
|
||||
|
||||
If PROMPT-FOR-SENDER is non-nil, the user will be prompted for
|
||||
the From: address first."
|
||||
(interactive "P")
|
||||
(let ((other-headers
|
||||
(when prompt-for-sender
|
||||
(list (cons 'from (notmuch-mua-prompt-for-sender))))))
|
||||
(notmuch-mua-mail nil nil other-headers)))
|
||||
|
||||
(defun notmuch-mua-send-and-exit (&optional arg)
|
||||
(interactive "P")
|
||||
(message-send-and-exit arg))
|
||||
|
|
|
@ -792,7 +792,7 @@ function is used. "
|
|||
(define-key map (kbd "<backtab>") 'notmuch-show-previous-button)
|
||||
(define-key map (kbd "TAB") 'notmuch-show-next-button)
|
||||
(define-key map "s" 'notmuch-search)
|
||||
(define-key map "m" 'notmuch-mua-mail)
|
||||
(define-key map "m" 'notmuch-mua-new-mail)
|
||||
(define-key map "f" 'notmuch-show-forward-message)
|
||||
(define-key map "r" 'notmuch-show-reply)
|
||||
(define-key map "|" 'notmuch-show-pipe-message)
|
||||
|
|
|
@ -204,7 +204,7 @@ For a mouse binding, return nil."
|
|||
(define-key map "p" 'notmuch-search-previous-thread)
|
||||
(define-key map "n" 'notmuch-search-next-thread)
|
||||
(define-key map "r" 'notmuch-search-reply-to-thread)
|
||||
(define-key map "m" 'notmuch-mua-mail)
|
||||
(define-key map "m" 'notmuch-mua-new-mail)
|
||||
(define-key map "s" 'notmuch-search)
|
||||
(define-key map "o" 'notmuch-search-toggle-order)
|
||||
(define-key map "c" 'notmuch-search-stash-map)
|
||||
|
|
Loading…
Reference in a new issue