fix(lsp): update capability maps (#35227)

This commit is contained in:
Maria José Solano
2025-08-07 19:33:52 -07:00
committed by GitHub
parent 038eb01b41
commit 9139c4f90f

View File

@@ -1133,6 +1133,7 @@ protocol._request_name_to_client_capability = {
['inlayHint/resolve'] = { 'textDocument', 'inlayHint', 'resolveSupport' },
['textDocument/codeAction'] = { 'textDocument', 'codeAction' },
['textDocument/codeLens'] = { 'textDocument', 'codeLens' },
['textDocument/colorPresentation'] = { 'textDocument', 'colorProvider' },
['textDocument/completion'] = { 'textDocument', 'completion' },
['textDocument/declaration'] = { 'textDocument', 'declaration' },
['textDocument/definition'] = { 'textDocument', 'definition' },
@@ -1211,6 +1212,7 @@ protocol._request_name_to_server_capability = {
['inlayHint/resolve'] = { 'inlayHintProvider', 'resolveProvider' },
['textDocument/codeAction'] = { 'codeActionProvider' },
['textDocument/codeLens'] = { 'codeLensProvider' },
['textDocument/colorPresentation'] = { 'colorProvider' },
['textDocument/completion'] = { 'completionProvider' },
['textDocument/declaration'] = { 'declarationProvider' },
['textDocument/definition'] = { 'definitionProvider' },