From: João Távora Date: Wed, 9 May 2018 21:28:29 +0000 (+0100) Subject: Call eglot-eldoc-function after completion finishes X-Git-Tag: emacs-29.0.90~1616^2~524^2~4^2~604 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0a9c14efad60e29ba7604e19f5822757e0c066d6;p=emacs.git Call eglot-eldoc-function after completion finishes * eglot.el (eglot-completion-at-point): Call eglot-eldoc-function after completion finishes. --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 0795bc3e8c9..d5eae031e08 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -1292,7 +1292,9 @@ DUMMY is ignored" (lambda (items) (sort items (lambda (a b) (string-lessp (get-text-property 0 :sortText a) - (get-text-property 0 :sortText b))))))))) + (get-text-property 0 :sortText b))))) + :exit-function + (lambda (_string _status) (eglot-eldoc-function)))))) (defvar eglot--highlights nil "Overlays for textDocument/documentHighlight.")