diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-02-22 21:07:09 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-02-22 21:07:09 +0100 |
commit | cafafb381a04e33f3ce9cd15dd9f94b73226831f (patch) | |
tree | 39c0444924dc20b2715e102a8e8ea34a11684ab6 /src/feature.h | |
parent | 19eb6658eced1b1ce3d1097187ee28c28e352f2e (diff) | |
download | vim-git-cafafb381a04e33f3ce9cd15dd9f94b73226831f.tar.gz |
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.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/feature.h b/src/feature.h index a0b0f7e1d..d29e599a9 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 |