Variable: eglot-report-progress
eglot-report-progress is a customizable variable defined in
eglot.el.gz.
Value
t
Documentation
If non-nil, show progress of long running LSP server work.
If set to messages, use *Messages* buffer, else use Eglot's
mode line indicator.
For changes on this variable to take effect, you need to restart
the LSP connection. That can be done by eglot-reconnect.
This variable was added, or its default value changed, in Eglot version 1.10.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defcustom eglot-report-progress t
"If non-nil, show progress of long running LSP server work.
If set to `messages', use *Messages* buffer, else use Eglot's
mode line indicator.
For changes on this variable to take effect, you need to restart
the LSP connection. That can be done by `eglot-reconnect'."
:type '(choice (const :tag "Don't show progress" nil)
(const :tag "Show progress in *Messages*" messages)
(const :tag "Show progress in Eglot's mode line indicator" t))
:package-version '(Eglot . "1.10"))