diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-05-12 05:39:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-12 05:39:33 +0800 |
commit | 4e5c633ed4871a948aff7338b793ac5f93484153 (patch) | |
tree | 744f6ad0ea34f49e17a5ffae6ae3e335de86559d /test/functional/api/extmark_spec.lua | |
parent | c1396afa7c41c2009d06a54c8aaf1ca5689a9786 (diff) | |
download | rneovim-4e5c633ed4871a948aff7338b793ac5f93484153.tar.gz rneovim-4e5c633ed4871a948aff7338b793ac5f93484153.tar.bz2 rneovim-4e5c633ed4871a948aff7338b793ac5f93484153.zip |
fix(api): make getting explicit empty hl in virtual text work (#28697)
Diffstat (limited to 'test/functional/api/extmark_spec.lua')
-rw-r--r-- | test/functional/api/extmark_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/api/extmark_spec.lua b/test/functional/api/extmark_spec.lua index 965a60417a..5ab3e09bf8 100644 --- a/test/functional/api/extmark_spec.lua +++ b/test/functional/api/extmark_spec.lua @@ -1569,7 +1569,7 @@ describe('API/extmarks', function() sign_text = '>>', spell = true, virt_lines = { - { { 'lines', 'Macro' }, { '???' } }, + { { 'lines', 'Macro' }, { '???' }, { ';;;', '' } }, { { 'stack', { 'Type', 'Search' } }, { '!!!' } }, }, virt_lines_above = true, @@ -1604,7 +1604,7 @@ describe('API/extmarks', function() sign_text = '>>', spell = true, virt_lines = { - { { 'lines', 'Macro' }, { '???' } }, + { { 'lines', 'Macro' }, { '???' }, { ';;;', '' } }, { { 'stack', { 'Type', 'Search' } }, { '!!!' } }, }, virt_lines_above = true, |