diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-07-24 15:06:01 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-07-24 16:02:53 +0200 |
| commit | 862338255da6dc08ae4f4f78db0034c81e3cdf38 (patch) | |
| tree | 337a0256152920951bcb912e32b3601f3d36b315 /test/functional | |
| parent | 64727ac01219db0466bd094068cab9ee8044042c (diff) | |
| download | rneovim-862338255da6dc08ae4f4f78db0034c81e3cdf38.tar.gz rneovim-862338255da6dc08ae4f4f78db0034c81e3cdf38.tar.bz2 rneovim-862338255da6dc08ae4f4f78db0034c81e3cdf38.zip | |
fix(runtime): sync bundled treesitter queries
Diffstat (limited to 'test/functional')
| -rw-r--r-- | test/functional/treesitter/highlight_spec.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/functional/treesitter/highlight_spec.lua b/test/functional/treesitter/highlight_spec.lua index 3774ff8d54..b0ac180738 100644 --- a/test/functional/treesitter/highlight_spec.lua +++ b/test/functional/treesitter/highlight_spec.lua @@ -1052,10 +1052,15 @@ describe('treesitter highlighting (markdown)', function() insert(string.format('[This link text](%s) is a hyperlink.', url)) screen:add_extra_attr_ids({ [100] = { foreground = Screen.colors.DarkCyan, url = 'https://example.com' }, + [101] = { + foreground = Screen.colors.SlateBlue, + url = 'https://example.com', + underline = true, + }, }) screen:expect({ grid = [[ - {25:[}{100:This link text}{25:](}{28:https://example.com}{25:)} is| + {25:[}{100:This link text}{25:](}{101:https://example.com}{25:)} is| a hyperlink^. | {1:~ }|*3 | |