From: João Távora Date: Tue, 21 Mar 2023 09:56:30 +0000 (+0000) Subject: Eglot: report window/workDoneProgress capability to language server X-Git-Tag: emacs-29.0.90~118 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=47d8e4b0d38;p=emacs.git Eglot: report window/workDoneProgress capability to language server In bug#59149, LSP progress reporting was implemented, but Eglot's 'capabilities' statement to the server wasn't changed to include window/workDoneProgress. * lisp/progmodes/eglot.el (eglot-client-capabilities): Actually report workDoneProgress. --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 7a076c134fc..77428c5af07 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -819,6 +819,7 @@ treated as in `eglot--dbind'." `(:valueSet [,@(mapcar #'car eglot--tag-faces)]))) + :window `(:workDoneProgress t) :general (list :positionEncodings ["utf-32" "utf-8" "utf-16"]) :experimental eglot--{})))