]> git.notmuchmail.org Git - notmuch/commitdiff
notmuch.el: Move to first unread message on notmuch-show.
authorCarl Worth <cworth@cworth.org>
Wed, 4 Nov 2009 19:19:50 +0000 (11:19 -0800)
committerCarl Worth <cworth@cworth.org>
Wed, 4 Nov 2009 19:19:50 +0000 (11:19 -0800)
This is important for when a new message is delivered to an existing
enormous thread.

notmuch.el

index 849654b72945f19bc6a62d46402c43241efe34ce..9bf272bed473fed9bec6c52ff404da42fa8b259d 100644 (file)
@@ -172,6 +172,15 @@ message in the buffer."
       (notmuch-show-next-message)
       (point))))
 
+(defun notmuch-show-next-unread-message ()
+  "Advance to the beginning of the next unread message in the buffer.
+
+Does nothing if there are no more unread messages past the
+current point."
+  (while (and (not (eobp))
+             (not (member "unread" (notmuch-show-get-tags))))
+    (notmuch-show-next-message)))
+
 (defun notmuch-show-previous-message ()
   "Backup to the beginning of the previous message in the buffer.
 
@@ -400,6 +409,7 @@ thread from that buffer can be show when done with this one)."
        (call-process "notmuch" nil t nil "show" thread-id)
        (notmuch-show-markup-messages)
        )
+      (notmuch-show-next-unread-message)
       )))
 
 (defvar notmuch-search-mode-map