mu4e: update documentation

This commit is contained in:
Dirk-Jan C. Binnema 2023-12-01 19:11:13 +02:00
parent 8e52ef6a7c
commit 4ea450c29f
2 changed files with 15 additions and 8 deletions

View File

@ -789,7 +789,8 @@ of message."
;;;###autoload
(defun mu4e-compose-reply (&optional wide)
"Reply to the message at point.
If WIDE is non-nil, make it a \"wide\" reply (\"reply-to-all\")."
If WIDE is non-nil, make it a \"wide\" reply (a.k.a.
\"reply-to-all\")."
(interactive)
(mu4e--compose-setup
'reply
@ -801,13 +802,17 @@ If WIDE is non-nil, make it a \"wide\" reply (\"reply-to-all\")."
;;;###autoload
(defun mu4e-compose-wide-reply ()
"Reply to the message at point to all recipients."
"Wide-reply to the message at point.
A.k.a., \"reply-to-all\"."
(interactive) (mu4e-compose-reply 'wide))
;;;###autoload
(defun mu4e-compose-supersede ()
"Supersede message at point.
Message must be from current user, as determined through
That is, send the message again, with all the same recipients;
this can be useful to follow-up on a sent message. The message
must be from current user, as determined through
`mu4e-personal-or-alternative-address-p'."
(interactive)
(mu4e--compose-setup
@ -858,7 +863,8 @@ Message must be from current user, as determined through
;;;###autoload
(defun mu4e-compose-resend (address)
"Re-send the message at point."
"Re-send the message at point.
The message is resent as-is, without any editing. "
(interactive
(list (completing-read
"Resend message to address: " mu4e--contacts-set)))

View File

@ -1683,11 +1683,12 @@ To influence the way a message is forwarded, you can use the variables
@subsection Supersede
Occasionally, it can be useful to ``supersede'' a message you sent; this is
somewhat like a wide-reply, but with the all the same recipients as the original
message, as determined by @code{mu4e-personal-or-alternative-address-p}.
Occasionally, it can be useful to ``supersede'' a message you sent; this drops
you into a new message that is just like the old message (and a @t{Supersedes:}
message header). You can then edit this message and send it.
For this, there @t{mu4e-compose-supersede} (no default keybinding).
This is only possible for messages @emph{you} sent, as determined by
@code{mu4e-personal-or-alternative-address-p}.
This wraps @code{message-supersede}.