mirror of
https://github.com/neovim/neovim.git
synced 2025-09-11 22:08:18 +00:00
vim-patch:8.0.0941: existing color schemes don't like StatusLineTerm
Problem: Existing color schemes don't work well with StatusLineTerm.
Solution: Don't use "reverse", use fg and bg colors. Also add
StatusLineTermNC.
05fbfdcda4
This commit is contained in:
@@ -5980,6 +5980,7 @@ static const char *highlight_init_both[] = {
|
|||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Default colors only used with a light background.
|
||||||
static const char *highlight_init_light[] = {
|
static const char *highlight_init_light[] = {
|
||||||
"ColorColumn ctermbg=LightRed guibg=LightRed",
|
"ColorColumn ctermbg=LightRed guibg=LightRed",
|
||||||
"CursorColumn ctermbg=LightGrey guibg=Grey90",
|
"CursorColumn ctermbg=LightGrey guibg=Grey90",
|
||||||
@@ -6013,6 +6014,7 @@ static const char *highlight_init_light[] = {
|
|||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Default colors only used with a dark background.
|
||||||
static const char *highlight_init_dark[] = {
|
static const char *highlight_init_dark[] = {
|
||||||
"ColorColumn ctermbg=DarkRed guibg=DarkRed",
|
"ColorColumn ctermbg=DarkRed guibg=DarkRed",
|
||||||
"CursorColumn ctermbg=DarkGrey guibg=Grey40",
|
"CursorColumn ctermbg=DarkGrey guibg=Grey40",
|
||||||
|
Reference in New Issue
Block a user