diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-11-28 03:23:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-28 03:23:10 +0100 |
commit | cf631aaed04925d37b7dcd7c30668fa32119da8e (patch) | |
tree | 4921ac2665e68f37e8cc62844f861411dacb1cc5 /test/functional/ui/highlight_spec.lua | |
parent | 3348eea429d67fdb3942a9e60d60deb8f59b3ec8 (diff) | |
download | rneovim-cf631aaed04925d37b7dcd7c30668fa32119da8e.tar.gz rneovim-cf631aaed04925d37b7dcd7c30668fa32119da8e.tar.bz2 rneovim-cf631aaed04925d37b7dcd7c30668fa32119da8e.zip |
diff/highlight: Fix GUI highlight for low-priority CursorLine (#9281)
ref #9028
ref 0653ed63a508
Diffstat (limited to 'test/functional/ui/highlight_spec.lua')
-rw-r--r-- | test/functional/ui/highlight_spec.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/functional/ui/highlight_spec.lua b/test/functional/ui/highlight_spec.lua index dffe5b5197..f996acc9be 100644 --- a/test/functional/ui/highlight_spec.lua +++ b/test/functional/ui/highlight_spec.lua @@ -797,8 +797,10 @@ describe('CursorLine highlight', function() [8] = {bold = true, foreground = Screen.colors.Blue1}, [9] = {bold = true, reverse = true}, [10] = {bold = true}, - [11] = {special = Screen.colors.Grey0, underline = true, foreground = Screen.colors.Grey0, background = Screen.colors.Grey0}, - [12] = {bold = true, special = Screen.colors.Grey0, background = Screen.colors.Grey0, foreground = Screen.colors.Grey0, underline = true}, + [11] = {special = Screen.colors.Grey0, underline = true, + background = Screen.colors.LightMagenta}, + [12] = {bold = true, underline = true, special = Screen.colors.Grey0, + background = Screen.colors.Red}, }) end) end) |