summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-08-13 21:37:43 +0200
committerBram Moolenaar <Bram@vim.org>2017-08-13 21:37:43 +0200
commitbce4f62d3043f04fe29f3fef2b927b2268b15255 (patch)
tree65f4e387a63ce41b82403d0ed41c47c64575bcf0 /src/globals.h
parent2bb7b6b0e477612cc098cba27cc63ec3d19a2527 (diff)
patch 8.0.0937: user highlight groups not adjusted for terminalv8.0.0937
Problem: User highlight groups are not adjusted for StatusLineTerm. Solution: Combine attributes like for StatusLineNC.
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index 8fb12050e5..5c2f3f1994 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -362,6 +362,9 @@ EXTERN int highlight_attr[HLF_COUNT]; /* Highl. attr for each context. */
EXTERN int highlight_user[9]; /* User[1-9] attributes */
# ifdef FEAT_STL_OPT
EXTERN int highlight_stlnc[9]; /* On top of user */
+# ifdef FEAT_TERMINAL
+EXTERN int highlight_stlterm[9]; /* On top of user */
+# endif
# endif
#endif
#ifdef FEAT_GUI