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:
Jan Edmund Lazo 2019-09-09 20:31:52 -04:00
parent 66e7a6c9fd
commit a84366439f
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15

View File

@ -5980,6 +5980,7 @@ static const char *highlight_init_both[] = {
NULL
};
// Default colors only used with a light background.
static const char *highlight_init_light[] = {
"ColorColumn ctermbg=LightRed guibg=LightRed",
"CursorColumn ctermbg=LightGrey guibg=Grey90",
@ -6013,6 +6014,7 @@ static const char *highlight_init_light[] = {
NULL
};
// Default colors only used with a dark background.
static const char *highlight_init_dark[] = {
"ColorColumn ctermbg=DarkRed guibg=DarkRed",
"CursorColumn ctermbg=DarkGrey guibg=Grey40",