Re: marking multiple messages to tag

2022-06-08 Thread David Bremner
erik colson writes: > Coming from mu4e I am missing a feature to mark several messages in a > search before applying a tag them. I know I can apply a tag to a region > of messages but in this case I would like to select messages while > skipping some messages. > Is this possible in

Re: marking multiple messages to tag

2022-06-08 Thread erik colson
Hi David, The idea of using a intermediate "marked" tag should work. Albeit there is a risk other messages are already marked and will therefor be tagged too. My idea would be to add an alert if the user is marking a first message in the current selection _and_ there is already a message

Re: [PATCH v2] emacs: use message-dont-reply-to-names when composing replies

2022-06-08 Thread Jose A Ortega Ruiz
On Wed, Jun 08 2022, David Bremner wrote: > jao writes: > >> >> >> +(defun notmuch-mua--remove-dont-reply-to-names () >> + (when-let ((nr (message-dont-reply-to-names))) > > Using when-let is fine with me, but I wonder if we should follow the > advice in subr-x to do > >

Re: [PATCH v2] emacs: use message-dont-reply-to-names when composing replies

2022-06-08 Thread David Bremner
jao writes: > > > +(defun notmuch-mua--remove-dont-reply-to-names () > + (when-let ((nr (message-dont-reply-to-names))) Using when-let is fine with me, but I wonder if we should follow the advice in subr-x to do (eval-when-compile (require 'subr-x)) It's autoloaded, but maybe we can

[PATCH v3] emacs: use message-dont-reply-to-names when composing replies

2022-06-08 Thread jao
notmuch-mua functions for replies now use the built-in customizable variable message-dont-reply-to-names with the same semantics as message-mode. --- This version of the patch addresses stylistic issues according to review Signed-off-by: jao --- doc/notmuch-emacs.rst | 9