From: João Távora Date: Mon, 7 May 2018 17:46:28 +0000 (+0100) Subject: Clean up client capabilities X-Git-Tag: emacs-29.0.90~1616^2~524^2~4^2~622 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a3fb899cb5bb6b88f2bf117578a273c81e4cb08e;p=emacs.git Clean up client capabilities * eglot.el (eglot--client-capabilities): Clean up client capabilities. --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 2c97f2ff48e..8e927258be7 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -215,23 +215,10 @@ CONTACT is as `eglot--contact'. Returns a process object." :willSave t :willSaveWaitUntil :json-false :didSave t) - :completion nil - :hover nil - :signatureHelp nil - :references nil - :documentHighlight nil - :documentSymbol nil - :formatting nil - :rangeFormatting nil - :onTypeFormatting nil - :definition nil - :typeDefinition nil - :implementation nil - :codeAction nil - :codeLens nil - :documentLink nil - :colorProvider nil - :rename nil + :completion `(:dynamicRegistration :json-false) + :hover `(:dynamicRegistration :json-false) + :references `(:dynamicRegistration :json-false) + :definition `(:dynamicRegistration :json-false) :publishDiagnostics `(:relatedInformation :json-false)) :experimental (eglot--obj)))