comparison src/globals.h @ 17401:5462bb963075 v8.1.1699

patch 8.1.1699: highlight_ga can be local instead of global commit https://github.com/vim/vim/commit/2ac6e82a4ee06ab01905ba1f279d529de148a911 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 15 22:40:22 2019 +0200 patch 8.1.1699: highlight_ga can be local instead of global Problem: Highlight_ga can be local instead of global. Solution: Move highlight_ga into highlight.c. (Yegappan Lakshmanan, closes #4675)
author Bram Moolenaar <Bram@vim.org>
date Mon, 15 Jul 2019 22:45:07 +0200
parents 635d7f5010b8
children cfdef48743ed
comparison
equal deleted inserted replaced
17400:124b8dfb28b8 17401:5462bb963075
353 353
354 354
355 EXTERN int scroll_region INIT(= FALSE); /* term supports scroll region */ 355 EXTERN int scroll_region INIT(= FALSE); /* term supports scroll region */
356 EXTERN int t_colors INIT(= 0); /* int value of T_CCO */ 356 EXTERN int t_colors INIT(= 0); /* int value of T_CCO */
357 357
358 // highlight groups for 'highlight' option
359 EXTERN garray_T highlight_ga INIT(= {0 COMMA 0 COMMA sizeof(hl_group_T) COMMA 10 COMMA NULL});
360
361 #ifdef FEAT_CMDL_COMPL 358 #ifdef FEAT_CMDL_COMPL
362 // Flags to indicate an additional string for highlight name completion. 359 // Flags to indicate an additional string for highlight name completion.
363 EXTERN int include_none INIT(= 0); // when 1 include "None" 360 EXTERN int include_none INIT(= 0); // when 1 include "None"
364 EXTERN int include_default INIT(= 0); // when 1 include "default" 361 EXTERN int include_default INIT(= 0); // when 1 include "default"
365 EXTERN int include_link INIT(= 0); // when 2 include "link" and "clear" 362 EXTERN int include_link INIT(= 0); // when 2 include "link" and "clear"