projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6880bc
)
Eglot: fix completion highlighting (bug#72824)
author
Dmitry Gutov
<dmitry@gutov.dev>
Tue, 27 Aug 2024 23:20:33 +0000
(
02:20
+0300)
committer
Dmitry Gutov
<dmitry@gutov.dev>
Tue, 27 Aug 2024 23:20:33 +0000
(
02:20
+0300)
* lisp/progmodes/eglot.el (eglot-completion-at-point):
Make sure to refer to 'completion-ignore-case' in the
'all-completions' method.
lisp/progmodes/eglot.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/eglot.el
b/lisp/progmodes/eglot.el
index 844fc634be9d4c4e4af9d89c0d7c05c08a34f631..acc197754dbdb2c8806661ff042cd5b2ba549e8e 100644
(file)
--- a/
lisp/progmodes/eglot.el
+++ b/
lisp/progmodes/eglot.el
@@
-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