feat(lsp): use treesitter for stylize markdown

This commit is contained in:
Maria José Solano
2023-09-12 20:51:21 -07:00
committed by Lewis Russell
parent c5abf487f1
commit cfd4a9dfaf
7 changed files with 162 additions and 75 deletions

View File

@@ -3032,7 +3032,7 @@ describe('LSP', function()
}
return vim.lsp.util.convert_signature_help_to_markdown_lines(signature_help, 'cs', {','})
]]
local expected = {'```cs', 'TestEntity.TestEntity()', '```', '<text>', 'some doc', '</text>'}
local expected = {'```cs', 'TestEntity.TestEntity()', '```', 'some doc'}
eq(expected, result)
end)
end)