mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.0.0760: terminal window colors wrong with 'termguicolors'
Problem: Terminal window colors wrong with 'termguicolors'. Solution: Add 'termguicolors' support.
This commit is contained in:
18
src/syntax.c
18
src/syntax.c
@@ -8796,6 +8796,24 @@ get_cterm_attr_idx(int attr, int fg, int bg)
|
||||
return get_attr_entry(&cterm_attr_table, &at_en);
|
||||
}
|
||||
|
||||
#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
|
||||
/*
|
||||
* Get an attribute index for a 'termguicolors' entry.
|
||||
* Uses an existing entry when possible or adds one when needed.
|
||||
*/
|
||||
int
|
||||
get_tgc_attr_idx(int attr, guicolor_T fg, guicolor_T bg)
|
||||
{
|
||||
attrentry_T at_en;
|
||||
|
||||
vim_memset(&at_en, 0, sizeof(attrentry_T));
|
||||
at_en.ae_attr = attr;
|
||||
at_en.ae_u.cterm.fg_rgb = fg;
|
||||
at_en.ae_u.cterm.bg_rgb = bg;
|
||||
return get_attr_entry(&cterm_attr_table, &at_en);
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(FEAT_GUI) || defined(PROTO)
|
||||
/*
|
||||
* Get an attribute index for a cterm entry.
|
||||
|
Reference in New Issue
Block a user