diff options
author | James McCoy <jamessan@jamessan.com> | 2021-12-05 15:36:54 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-12-08 21:47:58 -0500 |
commit | e8f9262125535bea8c7fcf833a715b569e07996e (patch) | |
tree | ecbbd94671bac26098f270f016c6f02956047bfc /test/functional/ui/cursor_spec.lua | |
parent | 2cd815c0af3eded9771df94532b4fb3817f2d3c6 (diff) | |
download | rneovim-e8f9262125535bea8c7fcf833a715b569e07996e.tar.gz rneovim-e8f9262125535bea8c7fcf833a715b569e07996e.tar.bz2 rneovim-e8f9262125535bea8c7fcf833a715b569e07996e.zip |
vim-patch:8.2.3664: cannot adjust sign highlighting for 'cursorline'
Problem: Cannot adjust sign highlighting for 'cursorline'.
Solution: Add CursorLineSign and CursorLineFold highlight groups.
(Gregory Anders, closes vim/vim#9201)
https://github.com/vim/vim/commit/e413ea04b716effb28eb49dbc98ad3f9f761545a
Diffstat (limited to 'test/functional/ui/cursor_spec.lua')
-rw-r--r-- | test/functional/ui/cursor_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/ui/cursor_spec.lua b/test/functional/ui/cursor_spec.lua index 9c035c728b..03cd4bfd06 100644 --- a/test/functional/ui/cursor_spec.lua +++ b/test/functional/ui/cursor_spec.lua @@ -212,10 +212,10 @@ describe('ui/cursor', function() if m.blinkwait then m.blinkwait = 700 end end if m.hl_id then - m.hl_id = 58 + m.hl_id = 60 m.attr = {background = Screen.colors.DarkGray} end - if m.id_lm then m.id_lm = 59 end + if m.id_lm then m.id_lm = 61 end end -- Assert the new expectation. |