feat(lsp): highlight active parameter in signature help (#15018)

This commit is contained in:
Folke Lemaitre
2021-07-08 08:04:35 +02:00
committed by GitHub
parent f2205b83c5
commit af263711a3
4 changed files with 31 additions and 8 deletions

View File

@@ -691,10 +691,11 @@ function protocol.make_client_capabilities()
signatureHelp = {
dynamicRegistration = false;
signatureInformation = {
activeParameterSupport = true;
documentationFormat = { protocol.MarkupKind.Markdown; protocol.MarkupKind.PlainText };
-- parameterInformation = {
-- labelOffsetSupport = false;
-- };
parameterInformation = {
labelOffsetSupport = true;
};
};
};
references = {