mu4e-view-gnus: Don't special-case Ivy

Unlike helm, it's not good for multi-selections.
This commit is contained in:
Dirk-Jan C. Binnema 2021-04-12 22:12:23 +03:00
parent b68a12692f
commit 55d8d20771
1 changed files with 2 additions and 2 deletions

View File

@ -490,10 +490,10 @@ containing commas."
(handles '())
(files '())
(helm-comp-read-use-marked t)
(compfn (if (or (and (boundp 'helm-mode) helm-mode) (and (boundp 'ivy-mode) ivy-mode))
(compfn (if (or (and (boundp 'helm-mode) helm-mode))
#'completing-read
;; Fallback to `completing-read-multiple' with poor
;; completion systems.
;; completion
#'completing-read-multiple))
dir)
(dolist (part parts)