mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
diff/highlight: Fix GUI highlight for low-priority CursorLine (#9281)
ref #9028
ref 0653ed63a5
This commit is contained in:
parent
3348eea429
commit
cf631aaed0
@ -186,8 +186,8 @@ int hl_get_underline(void)
|
|||||||
.cterm_fg_color = 0,
|
.cterm_fg_color = 0,
|
||||||
.cterm_bg_color = 0,
|
.cterm_bg_color = 0,
|
||||||
.rgb_ae_attr = (int16_t)HL_UNDERLINE,
|
.rgb_ae_attr = (int16_t)HL_UNDERLINE,
|
||||||
.rgb_fg_color = 0,
|
.rgb_fg_color = -1,
|
||||||
.rgb_bg_color = 0,
|
.rgb_bg_color = -1,
|
||||||
},
|
},
|
||||||
.kind = kHlUI,
|
.kind = kHlUI,
|
||||||
.id1 = 0,
|
.id1 = 0,
|
||||||
|
@ -797,8 +797,10 @@ describe('CursorLine highlight', function()
|
|||||||
[8] = {bold = true, foreground = Screen.colors.Blue1},
|
[8] = {bold = true, foreground = Screen.colors.Blue1},
|
||||||
[9] = {bold = true, reverse = true},
|
[9] = {bold = true, reverse = true},
|
||||||
[10] = {bold = true},
|
[10] = {bold = true},
|
||||||
[11] = {special = Screen.colors.Grey0, underline = true, foreground = Screen.colors.Grey0, background = Screen.colors.Grey0},
|
[11] = {special = Screen.colors.Grey0, underline = true,
|
||||||
[12] = {bold = true, special = Screen.colors.Grey0, background = Screen.colors.Grey0, foreground = Screen.colors.Grey0, underline = true},
|
background = Screen.colors.LightMagenta},
|
||||||
|
[12] = {bold = true, underline = true, special = Screen.colors.Grey0,
|
||||||
|
background = Screen.colors.Red},
|
||||||
})
|
})
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
|
Loading…
Reference in New Issue
Block a user