From: Carl Worth Date: Wed, 4 Nov 2009 01:18:04 +0000 (-0800) Subject: notmuch.el: Make archive-thread advance to next line. X-Git-Tag: 0.1~599 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=e0b830410aa1c64942a50ca7dd46bee9a496d86d notmuch.el: Make archive-thread advance to next line. This is the command in notmuch-search mode and it's cer convenient for it to advance to the next line there. (It would be even more convenient if it didn't also take forever, but as mentioned before that's an issue we'll need to fix in Xapian.) --- diff --git a/notmuch.el b/notmuch.el index 989450a6..0050dd92 100644 --- a/notmuch.el +++ b/notmuch.el @@ -445,8 +445,12 @@ Does nothing if already on the first message in the buffer." (notmuch-search-set-tags (delete tag (notmuch-search-get-tags)))) (defun notmuch-search-archive-thread () + "Archive the current thread (remove its \"inbox\" tag). + +This function advances point to the next line when finished." (interactive) - (notmuch-search-remove-tag "inbox")) + (notmuch-search-remove-tag "inbox") + (next-line)) (defun notmuch-search (query) "Run \"notmuch search\" with the given query string and display results."