aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Távora2026-01-11 12:35:44 +0000
committerJoão Távora2026-01-11 13:15:27 +0000
commitd33ef0c5cacf222ebcf45b6670920b5c35be1c50 (patch)
treec613b523ffb44b3448bd00c78ed0d2b53c2344ad
parent67dd97a4f76839e4f4c41357f7a2bd27cc9d59bd (diff)
downloademacs-d33ef0c5cacf222ebcf45b6670920b5c35be1c50.tar.gz
emacs-d33ef0c5cacf222ebcf45b6670920b5c35be1c50.zip
Eglot: properly announce semantic tokens support to servers
* lisp/progmodes/eglot.el (eglot-client-capabilities): Property annouce semantic tokens.
-rw-r--r--lisp/progmodes/eglot.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el
index 587b03ee1ba..8a0d6fa5b86 100644
--- a/lisp/progmodes/eglot.el
+++ b/lisp/progmodes/eglot.el
@@ -1132,7 +1132,7 @@ object."
1132 :rangeFormatting `(:dynamicRegistration :json-false) 1132 :rangeFormatting `(:dynamicRegistration :json-false)
1133 :rename `(:dynamicRegistration :json-false) 1133 :rename `(:dynamicRegistration :json-false)
1134 :semanticTokens `(:dynamicRegistration :json-false 1134 :semanticTokens `(:dynamicRegistration :json-false
1135 :requests '(:full (:delta t)) 1135 :requests (:full (:delta t))
1136 :overlappingTokenSupport t 1136 :overlappingTokenSupport t
1137 :multilineTokenSupport t 1137 :multilineTokenSupport t
1138 :tokenTypes [,@eglot-semantic-token-types] 1138 :tokenTypes [,@eglot-semantic-token-types]