comparison src/globals.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 0ea97a753a2d
comparison
equal deleted inserted replaced
9026:eea316a77946 9027:773d627cac0b
367 EXTERN char_u *use_gvimrc INIT(= NULL); /* "-U" cmdline argument */ 367 EXTERN char_u *use_gvimrc INIT(= NULL); /* "-U" cmdline argument */
368 #endif 368 #endif
369 EXTERN int cterm_normal_fg_color INIT(= 0); 369 EXTERN int cterm_normal_fg_color INIT(= 0);
370 EXTERN int cterm_normal_fg_bold INIT(= 0); 370 EXTERN int cterm_normal_fg_bold INIT(= 0);
371 EXTERN int cterm_normal_bg_color INIT(= 0); 371 EXTERN int cterm_normal_bg_color INIT(= 0);
372 #ifdef FEAT_TERMTRUECOLOR 372 #ifdef FEAT_TERMGUICOLORS
373 EXTERN long_u cterm_normal_fg_gui_color INIT(= INVALCOLOR); 373 EXTERN long_u cterm_normal_fg_gui_color INIT(= INVALCOLOR);
374 EXTERN long_u cterm_normal_bg_gui_color INIT(= INVALCOLOR); 374 EXTERN long_u cterm_normal_bg_gui_color INIT(= INVALCOLOR);
375 #endif 375 #endif
376 376
377 #ifdef FEAT_AUTOCMD 377 #ifdef FEAT_AUTOCMD