diff options
author | Maria José Solano <majosolano99@gmail.com> | 2023-09-12 20:51:21 -0700 |
---|---|---|
committer | Lewis Russell <me@lewisr.dev> | 2023-09-19 14:47:37 +0100 |
commit | cfd4a9dfaf5fd900264a946ca33c4a4f26f66a49 (patch) | |
tree | 730979e74d568ef3b874b91b86a5c1a20c8c7ba1 /test/functional/plugin/lsp_spec.lua | |
parent | c5abf487f19e45fe96a001b28b9e7981f43eed7d (diff) | |
download | rneovim-cfd4a9dfaf5fd900264a946ca33c4a4f26f66a49.tar.gz rneovim-cfd4a9dfaf5fd900264a946ca33c4a4f26f66a49.tar.bz2 rneovim-cfd4a9dfaf5fd900264a946ca33c4a4f26f66a49.zip |
feat(lsp): use treesitter for stylize markdown
Diffstat (limited to 'test/functional/plugin/lsp_spec.lua')
-rw-r--r-- | test/functional/plugin/lsp_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua index e0a8badb67..7e30af5058 100644 --- a/test/functional/plugin/lsp_spec.lua +++ b/test/functional/plugin/lsp_spec.lua @@ -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) |