mirror of
https://github.com/neovim/neovim.git
synced 2025-10-15 22:36:09 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -729,7 +729,7 @@ static int hl_cterm2rgb_color(int nr)
|
||||
0x08, 0x12, 0x1C, 0x26, 0x30, 0x3A, 0x44, 0x4E, 0x58, 0x62, 0x6C, 0x76,
|
||||
0x80, 0x8A, 0x94, 0x9E, 0xA8, 0xB2, 0xBC, 0xC6, 0xD0, 0xDA, 0xE4, 0xEE
|
||||
};
|
||||
static char_u ansi_table[16][4] = {
|
||||
static uint8_t ansi_table[16][4] = {
|
||||
// R G B idx
|
||||
{ 0, 0, 0, 1 }, // black
|
||||
{ 224, 0, 0, 2 }, // dark red
|
||||
|
Reference in New Issue
Block a user