[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Iterative Tinkering depends on API stability
From: |
Tassilo Horn |
Subject: |
Re: Iterative Tinkering depends on API stability |
Date: |
Fri, 17 May 2024 08:33:28 +0200 |
"Dr. Arne Babenhauserheide" <arne_bab@web.de> writes:
Hi Arne,
> And mu4e started to send emails to myself if I answer my own message
> in a thread with someone else, because the R shortcut no longer sends
> wide replies (W shortcut).
Yes, I was affected, too, and sent a lot of replies to only the author
instead to mailinglist and author. That's how I cope with it now:
--8<---------------cut here---------------start------------->8---
;; I keep on sending replies (R) instead of wide replies (W), so better
;; make R ask if I'm really sure.
(advice-add #'mu4e-compose-reply
:filter-args
(lambda (f &optional wide)
(list (or wide (yes-or-no-p "Wide reply? "))))
'((name "Ask if we actually want a wide reply (Reply All).")))
--8<---------------cut here---------------end--------------->8---
Bye,
Tassilo