comparison src/structs.h @ 9027:773d627cac0b v7.4.1799

commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 29 22:59:22 2016 +0200 patch 7.4.1799 Problem: 'guicolors' is a confusing option name. Solution: Use 'termguicolors' instead. (Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Apr 2016 23:00:07 +0200
parents c83e2c1e7f2b
children 69bb7b230094
comparison
equal deleted inserted replaced
9026:eea316a77946 9027:773d627cac0b
83 #else 83 #else
84 # ifdef FEAT_XCLIPBOARD 84 # ifdef FEAT_XCLIPBOARD
85 # include <X11/Intrinsic.h> 85 # include <X11/Intrinsic.h>
86 # endif 86 # endif
87 # define guicolor_T long_u /* avoid error in prototypes and 87 # define guicolor_T long_u /* avoid error in prototypes and
88 * make FEAT_TERMTRUECOLOR work */ 88 * make FEAT_TERMGUICOLORS work */
89 # define INVALCOLOR ((guicolor_T)0x1ffffff) 89 # define INVALCOLOR ((guicolor_T)0x1ffffff)
90 #endif 90 #endif
91 91
92 /* 92 /*
93 * marks: positions in a file 93 * marks: positions in a file
911 struct 911 struct
912 { 912 {
913 /* These colors need to be > 8 bits to hold 256. */ 913 /* These colors need to be > 8 bits to hold 256. */
914 short_u fg_color; /* foreground color number */ 914 short_u fg_color; /* foreground color number */
915 short_u bg_color; /* background color number */ 915 short_u bg_color; /* background color number */
916 # ifdef FEAT_TERMTRUECOLOR 916 # ifdef FEAT_TERMGUICOLORS
917 long_u fg_rgb; /* foreground color RGB */ 917 long_u fg_rgb; /* foreground color RGB */
918 long_u bg_rgb; /* background color RGB */ 918 long_u bg_rgb; /* background color RGB */
919 # endif 919 # endif
920 } cterm; 920 } cterm;
921 # ifdef FEAT_GUI 921 # ifdef FEAT_GUI