summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-08-12 15:12:30 +0200
committerBram Moolenaar <Bram@vim.org>2017-08-12 15:12:30 +0200
commit0cd2a94a4030f6bd12eaec44db92db108e33c913 (patch)
treedac79357ed2b9035ffe377d56bf87c2dfdda0e2d /src/vim.h
parent9698ad7201ca1a3acec69679f1ab8b15323ff406 (diff)
downloadvim-git-0cd2a94a4030f6bd12eaec44db92db108e33c913.tar.gz
patch 8.0.0914: highlight attributes are always combinedv8.0.0914
Problem: Highlight attributes are always combined. Solution: Add the 'nocombine' value to replace attributes instead of combining them. (scauligi, closes #1963)
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vim.h b/src/vim.h
index d7d3556c1..23a000eef 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -680,7 +680,8 @@ extern int (*dyn_libintl_putenv)(const char *envstring);
#define HL_UNDERLINE 0x08
#define HL_UNDERCURL 0x10
#define HL_STANDOUT 0x20
-#define HL_ALL 0x3f
+#define HL_NOCOMBINE 0x40
+#define HL_ALL 0x7f
/* special attribute addition: Put message in history */
#define MSG_HIST 0x1000