diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-04-29 22:59:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-04-29 22:59:22 +0200 |
commit | 61be73bb0f965a895bfb064ea3e55476ac175162 (patch) | |
tree | 1e8383f05effc05a320c2e803ff6f2b431c2507c /src/feature.h | |
parent | bb82762907ba024717ad9af3b229c2fa6405cd36 (diff) | |
download | vim-git-61be73bb0f965a895bfb064ea3e55476ac175162.tar.gz |
patch 7.4.1799v7.4.1799
Problem: 'guicolors' is a confusing option name.
Solution: Use 'termguicolors' instead. (Hirohito Higashi)
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/feature.h b/src/feature.h index d3d768eb3..54f665f40 100644 --- a/src/feature.h +++ b/src/feature.h @@ -815,10 +815,10 @@ #endif /* - * +termtruecolor 'guicolor' option. + * +termguicolors 'termguicolors' option. */ #if (defined(FEAT_BIG) && defined(FEAT_SYN_HL)) && !defined(ALWAYS_USE_GUI) -# define FEAT_TERMTRUECOLOR +# define FEAT_TERMGUICOLORS #endif /* Mac specific thing: Codewarrior interface. */ |