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.)
This commit is contained in:
Carl Worth 2009-11-03 17:18:04 -08:00
parent c4ea149a9b
commit e0b830410a

View file

@ -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."