Previously the "Other" choice matched every value, so it was always
shown in the customize buffer.
* eglot.el (eglot-ignored-server-capabilites): Make the "Other" choice
the last possible option.
under cursor."
:type '(repeat
(choice
- (symbol :tag "Other")
(const :tag "Documentation on hover" :hoverProvider)
(const :tag "Code completion" :completionProvider)
(const :tag "Function signature help" :signatureHelpProvider)
(const :tag "Highlight links in document" :documentLinkProvider)
(const :tag "Decorate color references" :colorProvider)
(const :tag "Fold regions of buffer" :foldingRangeProvider)
- (const :tag "Execute custom commands" :executeCommandProvider))))
+ (const :tag "Execute custom commands" :executeCommandProvider)
+ (symbol :tag "Other"))))
(defun eglot--server-capable (&rest feats)
"Determine if current server is capable of FEATS."