diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-19 03:55:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-19 03:55:11 +0800 |
commit | 5a6c7c805b8bb1d1ed9fe829ed33f18ffa6f4f47 (patch) | |
tree | 4f600676df0d9bcbd2787ca44782d6371ada6ab5 /test/functional/ui/mouse_spec.lua | |
parent | f0e6e2ae463aa5f9c5e64e6fe01c1bab82131933 (diff) | |
download | rneovim-5a6c7c805b8bb1d1ed9fe829ed33f18ffa6f4f47.tar.gz rneovim-5a6c7c805b8bb1d1ed9fe829ed33f18ffa6f4f47.tar.bz2 rneovim-5a6c7c805b8bb1d1ed9fe829ed33f18ffa6f4f47.zip |
fix(extmarks): make empty "conceal" respect &conceallevel = 1 (#24785)
This treats extmark conceal more like matchadd() conceal.
Diffstat (limited to 'test/functional/ui/mouse_spec.lua')
-rw-r--r-- | test/functional/ui/mouse_spec.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/ui/mouse_spec.lua b/test/functional/ui/mouse_spec.lua index 9c22d112d3..a8d01cfbf1 100644 --- a/test/functional/ui/mouse_spec.lua +++ b/test/functional/ui/mouse_spec.lua @@ -1655,8 +1655,7 @@ describe('ui/mouse/input', function() test_mouse_click_conceal() end) - -- FIXME: cannot make extmark conceal behave exactly like syntax conceal without cchar - pending('(extmarks)', function() + describe('(extmarks)', function() before_each(function() local ns = meths.create_namespace('conceal') meths.buf_set_extmark(0, ns, 0, 11, { end_col = 12, conceal = '' }) |