diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-12-25 18:57:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-25 18:57:55 +0800 |
commit | ddc8dd187d1c4da451332faf545171f242aa6b7a (patch) | |
tree | da688d6ab0d57ec3fcb5f08d1ebe6286f2be534a /test/functional/api/extmark_spec.lua | |
parent | a42df117861f0f0233dec89a0d2cc79144d4fa4e (diff) | |
download | rneovim-ddc8dd187d1c4da451332faf545171f242aa6b7a.tar.gz rneovim-ddc8dd187d1c4da451332faf545171f242aa6b7a.tar.bz2 rneovim-ddc8dd187d1c4da451332faf545171f242aa6b7a.zip |
refactor(drawline): reduce size of wlv.extra[] (#26733)
It's now only used for transchar_hex(), which only needs 11 bytes.
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 9b8d8a3afc..06eb938927 100644 --- a/test/functional/api/extmark_spec.lua +++ b/test/functional/api/extmark_spec.lua @@ -1837,7 +1837,7 @@ describe('API/win_extmark', function() -- notifications from 2nd call { {id = 1000}, ns, marks[1], 1, 0 }, { {id = 1000}, ns, marks[2], 1, 2 }, - -- notifications from 3nd call + -- notifications from 3rd call { {id = 1000}, ns, marks[1], 1, 0 }, { {id = 1000}, ns, marks[2], 1, 2 }, { {id = 1000}, ns, marks[3], 1, 4 }, |