commit 82d0883c2d96cafba17590cb48674d06e7834816
parent 7486c2f6aa6d5fbed7845a8dc100bf797498782d
Author: Riley Bruins <ribru17@hotmail.com>
Date: Thu, 12 Jun 2025 11:00:42 -0700
fix(lsp): correct diagnostic data support and related info capabilities (#34454)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/runtime/lua/vim/lsp/protocol.lua b/runtime/lua/vim/lsp/protocol.lua
@@ -344,6 +344,7 @@ function protocol.make_client_capabilities()
tagSupport = {
valueSet = get_value_set(constants.DiagnosticTag),
},
+ dataSupport = true,
},
inlayHint = {
dynamicRegistration = true,
@@ -527,7 +528,6 @@ function protocol.make_client_capabilities()
prepareSupport = true,
},
publishDiagnostics = {
- relatedInformation = true,
tagSupport = {
valueSet = get_value_set(constants.DiagnosticTag),
},