diff options
author | luukvbaal <luukvbaal@gmail.com> | 2025-01-15 11:38:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-15 02:38:45 -0800 |
commit | 5cc93ef4729c65d6a539c8d0a8a2bf767cf17ced (patch) | |
tree | 6aa1ecca4cf94db2f47f3d8285ee46514734afe9 /test/functional/api/extmark_spec.lua | |
parent | 09bcb310681e3b87d5b8c5eb547b182554cff7b4 (diff) | |
download | rneovim-5cc93ef4729c65d6a539c8d0a8a2bf767cf17ced.tar.gz rneovim-5cc93ef4729c65d6a539c8d0a8a2bf767cf17ced.tar.bz2 rneovim-5cc93ef4729c65d6a539c8d0a8a2bf767cf17ced.zip |
fix(marks): revise metadata for start mark of revalidated pair #32017
Problem: Metadata may be revised for end mark of a revalidated pair.
Solution: Revise metadata for start mark of a revalidated pair.
Diffstat (limited to 'test/functional/api/extmark_spec.lua')
-rw-r--r-- | test/functional/api/extmark_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/api/extmark_spec.lua b/test/functional/api/extmark_spec.lua index c8d6110207..8a4aea1efe 100644 --- a/test/functional/api/extmark_spec.lua +++ b/test/functional/api/extmark_spec.lua @@ -1794,7 +1794,7 @@ describe('API/extmarks', function() eq({}, get_extmark_by_id(ns, 4, {})) end) - it('no crash checking invalided flag of sign pair end key #31856', function() + it('no crash checking invalidated flag of sign pair end key #31856', function() api.nvim_buf_set_lines(0, 0, 1, false, { '', '' }) api.nvim_set_option_value('signcolumn', 'auto:2', {}) set_extmark(ns, 1, 0, 0, { sign_text = 'S1', invalidate = true, end_row = 0 }) |