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:
parent
3e30c779a7
commit
341e5795d5
1 changed files with 5 additions and 0 deletions
|
@ -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 ()
|
||||
|
|
Loading…
Add table
Reference in a new issue