unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH 1/7] emacs/tree: return true if a thread was found in next-thread
@ 2020-04-04 20:41 William Casarin
  2020-04-04 20:41 ` [PATCH 2/7] emacs/tree: add notmuch-tree-goto-matching-message William Casarin
                   ` (11 more replies)
  0 siblings, 12 replies; 14+ messages in thread
From: William Casarin @ 2020-04-04 20:41 UTC (permalink / raw)
  To: notmuch

This will allow us to pop back to parent buffers when there are no
more threads to jump to.

Signed-off-by: William Casarin <jb55@jb55.com>
---

 This is as rebased version of id:20191228150124.20630-1-jb55@jb55.com
 as requested in id:87v9mg3gut.fsf@tethera.net 

 emacs/notmuch-tree.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el
index 9a83292c..1bcf6cf9 100644
--- a/emacs/notmuch-tree.el
+++ b/emacs/notmuch-tree.el
@@ -679,10 +679,13 @@ message will be \"unarchived\", i.e. the tag changes in
   (notmuch-tree-thread-top))
 
 (defun notmuch-tree-next-thread ()
+  "Get the next thread in the current tree. Returns t if a thread was
+found or nil if not."
   (interactive)
   (forward-line 1)
   (while (not (or (notmuch-tree-get-prop :first) (eobp)))
-    (forward-line 1)))
+    (forward-line 1))
+  (not (eobp)))
 
 (defun notmuch-tree-thread-mapcar (function)
   "Iterate through all messages in the current thread
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2020-04-06 11:59 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-04 20:41 [PATCH 1/7] emacs/tree: return true if a thread was found in next-thread William Casarin
2020-04-04 20:41 ` [PATCH 2/7] emacs/tree: add notmuch-tree-goto-matching-message William Casarin
2020-04-04 20:41 ` [PATCH 3/7] emacs/tree: add notmuch-tree-matching-message William Casarin
2020-04-04 20:41 ` [PATCH 4/7] emacs/tree: add kill-both prefix argument to notmuch-tree-quit William Casarin
2020-04-04 20:41 ` [PATCH 5/7] emacs/tree: add notmuch-tree-archive-message-than-next-or-exit William Casarin
2020-04-04 20:41 ` [PATCH v4 1/7] emacs/tree: return true if a thread was found in next-thread William Casarin
2020-04-04 20:41 ` [PATCH v4 2/7] emacs/tree: add notmuch-tree-goto-matching-message William Casarin
2020-04-04 20:41 ` [PATCH v4 3/7] emacs/tree: add notmuch-tree-matching-message William Casarin
2020-04-04 20:41 ` [PATCH v4 4/7] emacs/tree: add kill-both prefix argument to notmuch-tree-quit William Casarin
2020-04-04 20:41 ` [PATCH v4 5/7] emacs/tree: add notmuch-tree-archive-message-than-next-or-exit William Casarin
2020-04-04 20:41 ` [PATCH v4 6/7] emacs/tree: add notmuch-tree-archive-thread-then-exit William Casarin
2020-04-04 20:41 ` [PATCH v4 7/7] emacs/tree: add x/X bindings William Casarin
2020-04-04 20:44 ` [PATCH 1/7] emacs/tree: return true if a thread was found in next-thread William Casarin
2020-04-06 11:26   ` David Bremner

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).