mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
patch 7.4.1781
Problem: synIDattr() does not respect 'guicolors'. Solution: Change the conditition for the mode. (Christian Brabandt)
This commit is contained in:
@@ -20019,8 +20019,8 @@ f_synIDattr(typval_T *argvars UNUSED, typval_T *rettv)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#ifdef FEAT_GUI
|
#if defined(FEAT_GUI) || defined(FEAT_TERMTRUECOLOR)
|
||||||
if (gui.in_use)
|
if (USE_24BIT)
|
||||||
modec = 'g';
|
modec = 'g';
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
|
@@ -753,6 +753,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 */
|
||||||
|
/**/
|
||||||
|
1781,
|
||||||
/**/
|
/**/
|
||||||
1780,
|
1780,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user