* [PATCH] emacs: notmuch-tree: mark the initial message at point as read
@ 2021-02-16 0:01 Jonas Bernoulli
2021-02-25 20:52 ` Tomi Ollila
0 siblings, 1 reply; 4+ messages in thread
From: Jonas Bernoulli @ 2021-02-16 0:01 UTC (permalink / raw)
To: notmuch
When moving between message in a tree or show buffer, the message at
point is marked as read. Likewise when creating such a buffer, then
the message that is initially at point is supposed to be marked as
read as well.
The latter worked for `notmuch-show' but not for `notmuch-tree'.
Press "RET" or "M-RET" in a search buffer to observe these behaviors.
In both cases the marking is supposed to be done by the function
`notmuch-show-command-hook'. In the case of `notmuch-show' that
function is added directly to `post-command-hook'.
`notmuch-tree' instead adds the function `notmuch-tree-command-hook'
to `post-command-hook' and that calls `notmuch-show-command-hook',
in the respective show buffer, but of course only if that exists.
Because the tree buffer is created asynchronously, the show buffer
doesn't exist yet by the time the `post-command-hook' is run, so
we have to explicitly run `notmuch-tree-command-hook' once the
show buffer exists.
The show buffer is created when `notmuch-tree-goto-and-insert-msg'
calls `notmuch-tree-show-message-in'. `notmuch-tree-process-filter'
is what finally brings us here.
---
emacs/notmuch-tree.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el
index 13007a13..d9265fd5 100644
--- a/emacs/notmuch-tree.el
+++ b/emacs/notmuch-tree.el
@@ -949,7 +949,8 @@ (defun notmuch-tree-goto-and-insert-msg (msg)
(goto-char (point-max))
(forward-line -1)
(when notmuch-tree-open-target
- (notmuch-tree-show-message-in)))))
+ (notmuch-tree-show-message-in)
+ (notmuch-tree-command-hook)))))
(defun notmuch-tree-insert-tree (tree depth tree-status first last)
"Insert the message tree TREE at depth DEPTH in the current thread.
--
2.30.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] emacs: notmuch-tree: mark the initial message at point as read
2021-02-16 0:01 [PATCH] emacs: notmuch-tree: mark the initial message at point as read Jonas Bernoulli
@ 2021-02-25 20:52 ` Tomi Ollila
2021-02-27 0:18 ` Jonas Bernoulli
0 siblings, 1 reply; 4+ messages in thread
From: Tomi Ollila @ 2021-02-25 20:52 UTC (permalink / raw)
To: Jonas Bernoulli, notmuch
On Tue, Feb 16 2021, Jonas Bernoulli wrote:
> When moving between message in a tree or show buffer, the message at
> point is marked as read. Likewise when creating such a buffer, then
> the message that is initially at point is supposed to be marked as
> read as well.
>
> The latter worked for `notmuch-show' but not for `notmuch-tree'.
> Press "RET" or "M-RET" in a search buffer to observe these behaviors.
>
> In both cases the marking is supposed to be done by the function
> `notmuch-show-command-hook'. In the case of `notmuch-show' that
> function is added directly to `post-command-hook'.
>
> `notmuch-tree' instead adds the function `notmuch-tree-command-hook'
> to `post-command-hook' and that calls `notmuch-show-command-hook',
> in the respective show buffer, but of course only if that exists.
>
> Because the tree buffer is created asynchronously, the show buffer
> doesn't exist yet by the time the `post-command-hook' is run, so
> we have to explicitly run `notmuch-tree-command-hook' once the
> show buffer exists.
>
> The show buffer is created when `notmuch-tree-goto-and-insert-msg'
> calls `notmuch-tree-show-message-in'. `notmuch-tree-process-filter'
> is what finally brings us here.
Long message, small change (which is good). I try to understand
whether adding notmuch-tree-command-hook to post-command-hook in
notmuch-tree.el (not in this change) actually have any effect.
Tomi
> ---
> emacs/notmuch-tree.el | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el
> index 13007a13..d9265fd5 100644
> --- a/emacs/notmuch-tree.el
> +++ b/emacs/notmuch-tree.el
> @@ -949,7 +949,8 @@ (defun notmuch-tree-goto-and-insert-msg (msg)
> (goto-char (point-max))
> (forward-line -1)
> (when notmuch-tree-open-target
> - (notmuch-tree-show-message-in)))))
> + (notmuch-tree-show-message-in)
> + (notmuch-tree-command-hook)))))
>
> (defun notmuch-tree-insert-tree (tree depth tree-status first last)
> "Insert the message tree TREE at depth DEPTH in the current thread.
> --
> 2.30.1
> _______________________________________________
> notmuch mailing list -- notmuch@notmuchmail.org
> To unsubscribe send an email to notmuch-leave@notmuchmail.org
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] emacs: notmuch-tree: mark the initial message at point as read
2021-02-25 20:52 ` Tomi Ollila
@ 2021-02-27 0:18 ` Jonas Bernoulli
2021-02-27 0:28 ` Jonas Bernoulli
0 siblings, 1 reply; 4+ messages in thread
From: Jonas Bernoulli @ 2021-02-27 0:18 UTC (permalink / raw)
To: Tomi Ollila, notmuch
> I try to understand whether adding notmuch-tree-command-hook to
> post-command-hook in notmuch-tree.el (not in this change) actually
> have any effect.
You're right, that's unnecessary, and it gets worse.
`notmuch-tree-command-hook' is unnecessary too and if it weren't,
then it would fail because its added to the buffer-local value of
`post-command-hook', but that buffer is not the current buffer
when the hook is run.
Using `post-command-hook' in any form for this is questionable in the
first place. The idiomatic approach would be to use the `point-entered'
text property hook. Or `notmuch-tree-{previous,next}-message' could
just do the marking explicitly.
It's also not okay that `notmuch-tree-show-message-in' keeps recreating
the window.
`notmuch-show-command-hook' forces redisplay to update values that pass
along, but don't and shouldn't use. There is more than one function to
mark a message as read and they don't all end up doing the same thing.
What effectively does the marking is
(defun notmuch-tree-show-message-in ()
...
(when notmuch-show-mark-read-tags
(notmuch-tree-tag-update-display notmuch-show-mark-read-tags))
...)
I am going to refactor this mess, but that will take a while.
Jonas
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] emacs: notmuch-tree: mark the initial message at point as read
2021-02-27 0:18 ` Jonas Bernoulli
@ 2021-02-27 0:28 ` Jonas Bernoulli
0 siblings, 0 replies; 4+ messages in thread
From: Jonas Bernoulli @ 2021-02-27 0:28 UTC (permalink / raw)
To: Tomi Ollila, notmuch
Hm, when no tree buffer is involved, then `notmuch-show-command-hook'
probably is required. Anyway, there seems to be some undead code and
rethinking all this would be a good idea.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-02-27 0:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-16 0:01 [PATCH] emacs: notmuch-tree: mark the initial message at point as read Jonas Bernoulli
2021-02-25 20:52 ` Tomi Ollila
2021-02-27 0:18 ` Jonas Bernoulli
2021-02-27 0:28 ` Jonas Bernoulli
unofficial mirror of notmuch@notmuchmail.org
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://yhetil.org/notmuch/0 notmuch/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 notmuch notmuch/ https://yhetil.org/notmuch \
notmuch@notmuchmail.org
public-inbox-index notmuch
Example config snippet for mirrors.
Newsgroups are available over NNTP:
nntp://news.yhetil.org/yhetil.mail.notmuch.general
nntp://news.gmane.io/gmane.mail.notmuch.general
AGPL code for this site: git clone http://ou63pmih66umazou.onion/public-inbox.git