mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-21 06:55:39 +00:00
Eglot: fix completion highlighting (bug#72824)
* lisp/progmodes/eglot.el (eglot-completion-at-point): Make sure to refer to 'completion-ignore-case' in the 'all-completions' method.
This commit is contained in:
parent
d6880bc24d
commit
9ffa38d392
@ -3260,7 +3260,7 @@ for which LSP on-type-formatting should be requested."
|
||||
(try-completion pattern (funcall proxies)))
|
||||
((eq action t) ; all-completions
|
||||
(let ((comps (funcall proxies)))
|
||||
(dolist (c comps) (eglot--dumb-flex pattern c t))
|
||||
(dolist (c comps) (eglot--dumb-flex pattern c completion-ignore-case))
|
||||
(all-completions
|
||||
""
|
||||
comps
|
||||
|
Loading…
Reference in New Issue
Block a user