fix(lsp): typos in method names #36077

This commit is contained in:
Igor Lacerda
2025-10-08 00:44:57 -03:00
committed by GitHub
parent c58cc46094
commit f67306cc67
2 changed files with 3 additions and 3 deletions

View File

@@ -615,7 +615,7 @@ local static_registration_capabilities = {
['textDocument/linkedEditingRange'] = 'linkedEditingRangeProvider',
['textDocument/moniker'] = 'monikerProvider',
['textDocument/selectionRange'] = 'selectionRangeProvider',
['textDocument_semanticTokens/full'] = 'semanticTokensProvider',
['textDocument/semanticTokens/full'] = 'semanticTokensProvider',
['textDocument/typeDefinition'] = 'typeDefinitionProvider',
['textDocument/prepareTypeHierarchy'] = 'typeHierarchyProvider',
}

View File

@@ -650,12 +650,12 @@ RSC['window/showDocument'] = function(_, params, ctx)
end
---@see https://microsoft.github.io/language-server-protocol/specification/#workspace_inlayHint_refresh
RSC['workspace_inlayHint/refresh'] = function(err, result, ctx)
RSC['workspace/inlayHint/refresh'] = function(err, result, ctx)
return vim.lsp.inlay_hint.on_refresh(err, result, ctx)
end
---@see https://microsoft.github.io/language-server-protocol/specifications/specification-current/#semanticTokens_refreshRequest
RSC['workspace_semanticTokens/refresh'] = function(err, result, ctx)
RSC['workspace/semanticTokens/refresh'] = function(err, result, ctx)
return vim.lsp.semantic_tokens._refresh(err, result, ctx)
end