mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 11:58:10 +01:00
emacs: When completing tags, offer each tag once
When prompting for one or more tags to add or remove to/from one or more threads, ensure that the set of tags offered for completion contains no duplicates. Some completion packages (e.g. selectrum) will include every member of the offered list, resulting in the same tag being indicated as a possibility several times.
This commit is contained in:
parent
5648bebe69
commit
8b7c09c66b
1 changed files with 1 additions and 1 deletions
|
@ -577,7 +577,7 @@ thread."
|
|||
(notmuch-search-foreach-result beg end
|
||||
(lambda (pos)
|
||||
(setq output (append output (notmuch-search-get-tags pos)))))
|
||||
output))
|
||||
(delete-dups output)))
|
||||
|
||||
(defun notmuch-search-interactive-tag-changes (&optional initial-input)
|
||||
"Prompt for tag changes for the current thread or region.
|
||||
|
|
Loading…
Reference in a new issue