From cf631aaed04925d37b7dcd7c30668fa32119da8e Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Wed, 28 Nov 2018 03:23:10 +0100 Subject: diff/highlight: Fix GUI highlight for low-priority CursorLine (#9281) ref #9028 ref 0653ed63a508 --- test/functional/ui/highlight_spec.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'test/functional/ui/highlight_spec.lua') 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) -- cgit