comparison src/globals.h @ 17389:635d7f5010b8 v8.1.1693

patch 8.1.1693: syntax coloring and highlighting is in one big file commit https://github.com/vim/vim/commit/f9cc9f209ede9f15959e4c2351e970477c139614 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 14 21:29:22 2019 +0200 patch 8.1.1693: syntax coloring and highlighting is in one big file Problem: Syntax coloring and highlighting is in one big file. Solution: Move the highlighting to a separate file. (Yegappan Lakshmanan, closes #4674)
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Jul 2019 21:30:04 +0200
parents ba06a1c42274
children 5462bb963075
comparison
equal deleted inserted replaced
17388:13104cd7dc9f 17389:635d7f5010b8
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
362 // Flags to indicate an additional string for highlight name completion.
363 EXTERN int include_none INIT(= 0); // when 1 include "None"
364 EXTERN int include_default INIT(= 0); // when 1 include "default"
365 EXTERN int include_link INIT(= 0); // when 2 include "link" and "clear"
366 #endif
367
358 /* 368 /*
359 * When highlight_match is TRUE, highlight a match, starting at the cursor 369 * When highlight_match is TRUE, highlight a match, starting at the cursor
360 * position. Search_match_lines is the number of lines after the match (0 for 370 * position. Search_match_lines is the number of lines after the match (0 for
361 * a match within one line), search_match_endcol the column number of the 371 * a match within one line), search_match_endcol the column number of the
362 * character just after the match in the last line. 372 * character just after the match in the last line.