We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fafb4b1 commit a6cc5beCopy full SHA for a6cc5be
2 files changed
src/drawline.c
@@ -1517,8 +1517,12 @@ win_line(
1517
else
1518
#endif
1519
#ifdef FEAT_SYN_HL
1520
- if (has_syntax || get_term_attr)
1521
- char_attr = syntax_attr;
+ if (has_syntax
+# ifdef FEAT_TERMINAL
1522
+ || get_term_attr
1523
+# endif
1524
+ )
1525
+ char_attr = syntax_attr;
1526
1527
1528
char_attr = 0;
src/version.c
@@ -753,6 +753,8 @@ static char *(features[]) =
753
754
static int included_patches[] =
755
{ /* Add new patch number below this line */
756
+/**/
757
+ 2160,
758
/**/
759
2159,
760
0 commit comments