summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-09-02 18:33:56 +0200
committerBram Moolenaar <Bram@vim.org>2017-09-02 18:33:56 +0200
commitcf4b00c856ef714482d8d060332ac9a4d74e6b88 (patch)
treea17efb73ba6cffbdc8c17adbec2152ac41c35803 /src/vim.h
parentda22b8cc8b1b96fabd5a4c35c57b04a351340fb1 (diff)
downloadvim-git-cf4b00c856ef714482d8d060332ac9a4d74e6b88.tar.gz
patch 8.0.1038: strike-through text not supportedv8.0.1038
Problem: Strike-through text not supported. Solution: Add support for the "strikethrough" attribute. (Christian Brabandt, Ken Takata)
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 7fea70b90..77081e202 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -681,7 +681,8 @@ extern int (*dyn_libintl_putenv)(const char *envstring);
#define HL_UNDERCURL 0x10
#define HL_STANDOUT 0x20
#define HL_NOCOMBINE 0x40
-#define HL_ALL 0x7f
+#define HL_STRIKETHROUGH 0x80
+#define HL_ALL 0xff
/* special attribute addition: Put message in history */
#define MSG_HIST 0x1000