mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
notmuch.el: Fix add/remove tag from search buffers.
These were recently broken with the change of "notmuch search" to prefix thread IDs with "thread:" rather than printing them raw.
This commit is contained in:
parent
3942933962
commit
97ef8a74c9
1 changed files with 2 additions and 2 deletions
|
@ -759,12 +759,12 @@ and will also appear in a buffer named \"*Notmuch errors*\"."
|
|||
|
||||
(defun notmuch-search-add-tag (tag)
|
||||
(interactive "sTag to add: ")
|
||||
(notmuch-call-notmuch-process "tag" (concat "+" tag) (concat "thread:" (notmuch-search-find-thread-id)))
|
||||
(notmuch-call-notmuch-process "tag" (concat "+" tag) (notmuch-search-find-thread-id))
|
||||
(notmuch-search-set-tags (delete-dups (sort (cons tag (notmuch-search-get-tags)) 'string<))))
|
||||
|
||||
(defun notmuch-search-remove-tag (tag)
|
||||
(interactive "sTag to remove: ")
|
||||
(notmuch-call-notmuch-process "tag" (concat "-" tag) (concat "thread:" (notmuch-search-find-thread-id)))
|
||||
(notmuch-call-notmuch-process "tag" (concat "-" tag) (notmuch-search-find-thread-id))
|
||||
(notmuch-search-set-tags (delete tag (notmuch-search-get-tags))))
|
||||
|
||||
(defun notmuch-search-archive-thread ()
|
||||
|
|
Loading…
Reference in a new issue