summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-02-22 21:07:09 +0100
committerBram Moolenaar <Bram@vim.org>2018-02-22 21:07:09 +0100
commitcafafb381a04e33f3ce9cd15dd9f94b73226831f (patch)
tree39c0444924dc20b2715e102a8e8ea34a11684ab6 /src/feature.h
parent19eb6658eced1b1ce3d1097187ee28c28e352f2e (diff)
patch 8.0.1531: cannot use 24 bit colors in MS-Windows consolev8.0.1531
Problem: Cannot use 24 bit colors in MS-Windows console. Solution: Add support for vcon. (Nobuhiro Takasaki, Ken Takasaki, fixes #1270, fixes #2060)
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/feature.h b/src/feature.h
index a0b0f7e1d4..d29e599a9b 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -1394,3 +1394,10 @@
|| (defined(WIN3264) && defined(FEAT_GUI_W32))
# define FEAT_FILTERPIPE
#endif
+
+/*
+ * +vtp: Win32 virtual console.
+ */
+#if !defined(FEAT_GUI) && defined(WIN3264)
+# define FEAT_VTP
+#endif