mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -08:00
Fix eglot-report-progress :type
* lisp/progmodes/eglot.el (eglot-report-progress): Change :type to choice, to allow 'messages' as a value. (Bug#66556)
This commit is contained in:
parent
78b998f9aa
commit
cb89cbc406
1 changed files with 3 additions and 1 deletions
|
|
@ -467,7 +467,9 @@ ACTION is the default value for commands not in the alist."
|
|||
"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."
|
||||
:type 'boolean
|
||||
: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))
|
||||
:version "1.10")
|
||||
|
||||
(defcustom eglot-ignored-server-capabilities (list)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue