We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b58cca0 commit 15bb33cCopy full SHA for 15bb33c
lua/lsp_signature/helper.lua
@@ -259,6 +259,9 @@ helper.match_parameter = function(result, config)
259
end
260
if nextParameter.documentation and #nextParameter.documentation > 0 then
261
nexp = nexp .. ': ' .. nextParameter.documentation
262
+ -- this is to follow when the documentation is a table like {kind= xxx, value= zzz}
263
+ elseif type(nextParameter.documentation) == 'table' and nextParameter.documentation.value then
264
+ nexp = nexp .. ': ' .. nextParameter.documentation.value
265
266
267
-- test markdown hl
0 commit comments