diff options
| -rw-r--r-- | lisp/progmodes/eglot.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 7d83bcdd7ac..eba66503bf7 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el | |||
| @@ -467,7 +467,9 @@ ACTION is the default value for commands not in the alist." | |||
| 467 | "If non-nil, show progress of long running LSP server work. | 467 | "If non-nil, show progress of long running LSP server work. |
| 468 | If set to `messages', use *Messages* buffer, else use Eglot's | 468 | If set to `messages', use *Messages* buffer, else use Eglot's |
| 469 | mode line indicator." | 469 | mode line indicator." |
| 470 | :type 'boolean | 470 | :type '(choice (const :tag "Don't show progress" nil) |
| 471 | (const :tag "Show progress in *Messages*" messages) | ||
| 472 | (const :tag "Show progress in Eglot's mode line indicator" t)) | ||
| 471 | :version "1.10") | 473 | :version "1.10") |
| 472 | 474 | ||
| 473 | (defcustom eglot-ignored-server-capabilities (list) | 475 | (defcustom eglot-ignored-server-capabilities (list) |