Skip to content

Commit

Permalink
patch 8.2.0635: when using 256 colors DarkYellow does not show expect…
Browse files Browse the repository at this point in the history
…ed color

Problem:    When using 256 colors DarkYellow does not show expected color.
Solution:   Use color 3 instead of 130. (Romain Lafourcade, closes vim#5985)
  • Loading branch information
brammool committed Apr 25, 2020
1 parent 92b83cc commit e93c968
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/highlight.c
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ static int color_numbers_88[28] = {0, 4, 2, 6,
75, 11, 78, 15, -1};
// for xterm with 256 colors...
static int color_numbers_256[28] = {0, 4, 2, 6,
1, 5, 130, 130,
1, 5, 130, 3,
248, 248, 7, 7,
242, 242,
12, 81, 10, 121,
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
635,
/**/
634,
/**/
Expand Down

0 comments on commit e93c968

Please sign in to comment.