emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-30 9ffa38d3925: Eglot: fix completion highlighting (bug#72824)


From: Dmitry Gutov
Subject: emacs-30 9ffa38d3925: Eglot: fix completion highlighting (bug#72824)
Date: Tue, 27 Aug 2024 19:21:58 -0400 (EDT)

branch: emacs-30
commit 9ffa38d3925d70dea704988f68e9e3eca6c7d19c
Author: Dmitry Gutov <dmitry@gutov.dev>
Commit: Dmitry Gutov <dmitry@gutov.dev>

    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.
---
 lisp/progmodes/eglot.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el
index 844fc634be9..acc197754db 100644
--- 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]