Support minibuffer-visible-completions in completing-read-multiple

All that's required is to add minibuffer-visible-completions-map on
top of the completing-read-multiple map; this is the same thing that
minibuffer-visible-completions does in completing-read-default.

* lisp/emacs-lisp/crm.el (completing-read-multiple): Add
minibuffer-visible-completions-map (bug#69189)
This commit is contained in:
Spencer Baugh 2024-08-07 11:18:02 -04:00 committed by Juri Linkov
parent 3e30c779a7
commit 341e5795d5

View file

@ -238,6 +238,11 @@ with empty strings removed."
(let* ((map (if require-match
crm-local-must-match-map
crm-local-completion-map))
(map (if minibuffer-visible-completions
(make-composed-keymap
(list minibuffer-visible-completions-map
map))
map))
input)
(minibuffer-with-setup-hook
(lambda ()