mirror of
https://github.com/neovim/neovim.git
synced 2025-12-15 19:05:40 +00:00
vim-patch:9.1.0106: Visual highlight hard to read with 'termguicolors'
Problem: Visual highlight hard to read with 'termguicolors'
(Maxim Kim)
Solution: Set Visual GUI foreground to black (with background=light)
and lightgrey (with background=dark)
(Maxim Kim)
fixes: vim/vim#14024
closes: vim/vim#14025
34e4a05d02
Co-authored-by: Maxim Kim <habamax@gmail.com>
This commit is contained in:
@@ -22,7 +22,7 @@ local function new_screen(opt)
|
||||
[5] = { bold = true, foreground = Screen.colors.SeaGreen4 },
|
||||
[6] = { foreground = Screen.colors.Magenta },
|
||||
[7] = { bold = true, foreground = Screen.colors.Brown },
|
||||
[8] = { background = Screen.colors.LightGrey },
|
||||
[8] = { foreground = Screen.colors.Black, background = Screen.colors.LightGrey },
|
||||
[9] = { bold = true },
|
||||
[10] = { background = Screen.colors.Yellow1 },
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user