mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
fix(lsp): correct diagnostic data support and related info capabilities (#34454)
This commit is contained in:
@@ -344,6 +344,7 @@ function protocol.make_client_capabilities()
|
|||||||
tagSupport = {
|
tagSupport = {
|
||||||
valueSet = get_value_set(constants.DiagnosticTag),
|
valueSet = get_value_set(constants.DiagnosticTag),
|
||||||
},
|
},
|
||||||
|
dataSupport = true,
|
||||||
},
|
},
|
||||||
inlayHint = {
|
inlayHint = {
|
||||||
dynamicRegistration = true,
|
dynamicRegistration = true,
|
||||||
@@ -527,7 +528,6 @@ function protocol.make_client_capabilities()
|
|||||||
prepareSupport = true,
|
prepareSupport = true,
|
||||||
},
|
},
|
||||||
publishDiagnostics = {
|
publishDiagnostics = {
|
||||||
relatedInformation = true,
|
|
||||||
tagSupport = {
|
tagSupport = {
|
||||||
valueSet = get_value_set(constants.DiagnosticTag),
|
valueSet = get_value_set(constants.DiagnosticTag),
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user