mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.0635: when using 256 colors DarkYellow does not show expected color
Problem: When using 256 colors DarkYellow does not show expected color. Solution: Use color 3 instead of 130. (Romain Lafourcade, closes #5985)
This commit is contained in:
parent
92b83ccfda
commit
e93c968f52
@ -524,7 +524,7 @@ static int color_numbers_88[28] = {0, 4, 2, 6,
|
|||||||
75, 11, 78, 15, -1};
|
75, 11, 78, 15, -1};
|
||||||
// for xterm with 256 colors...
|
// for xterm with 256 colors...
|
||||||
static int color_numbers_256[28] = {0, 4, 2, 6,
|
static int color_numbers_256[28] = {0, 4, 2, 6,
|
||||||
1, 5, 130, 130,
|
1, 5, 130, 3,
|
||||||
248, 248, 7, 7,
|
248, 248, 7, 7,
|
||||||
242, 242,
|
242, 242,
|
||||||
12, 81, 10, 121,
|
12, 81, 10, 121,
|
||||||
|
@ -746,6 +746,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
635,
|
||||||
/**/
|
/**/
|
||||||
634,
|
634,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user