diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-12 15:12:30 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-12 15:12:30 +0200 |
commit | 0cd2a94a4030f6bd12eaec44db92db108e33c913 (patch) | |
tree | dac79357ed2b9035ffe377d56bf87c2dfdda0e2d /src/vim.h | |
parent | 9698ad7201ca1a3acec69679f1ab8b15323ff406 (diff) | |
download | vim-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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |