diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-04-25 15:38:18 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-04-25 15:56:26 -0400 |
commit | 2bf4e824d466ddbc99e2435402e1ff371afd02c5 (patch) | |
tree | c30af7bdaadefe3c300496bbefdbd7c8ab608bfd /src/nvim/syntax.c | |
parent | ef0398fe88e6cc74f33fb20519997774168d7832 (diff) | |
download | rneovim-2bf4e824d466ddbc99e2435402e1ff371afd02c5.tar.gz rneovim-2bf4e824d466ddbc99e2435402e1ff371afd02c5.tar.bz2 rneovim-2bf4e824d466ddbc99e2435402e1ff371afd02c5.zip |
vim-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 vim/vim#5985)
https://github.com/vim/vim/commit/e93c968f520ee8d6bc29ccc6e18055ac65e832b3
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r-- | src/nvim/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index ddb9188371..ef4dfb3caa 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -6400,7 +6400,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, |