comparison src/proto/highlight.pro @ 26115:bb87ce13e7d6 v8.2.3590

patch 8.2.3590: test for v:colornames sometimes fails Commit: https://github.com/vim/vim/commit/a0fca17251bf491db7b8d302ce22dee844597e82 Author: Drew Vogel <dvogel@github> Date: Sat Nov 13 10:50:01 2021 +0000 patch 8.2.3590: test for v:colornames sometimes fails Problem: Test for v:colornames sometimes fails. (Dominique Pell?) Solution: Check features. Clear v:colornames between tests. (Drew Vogel, closes #9105, closes #9073)
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Nov 2021 12:00:03 +0100
parents c544eacaf066
children 18cafa092e8d
comparison
equal deleted inserted replaced
26114:32f4ca8378c3 26115:bb87ce13e7d6
14 void hl_set_bg_color_name(char_u *name); 14 void hl_set_bg_color_name(char_u *name);
15 void hl_set_fg_color_name(char_u *name); 15 void hl_set_fg_color_name(char_u *name);
16 guicolor_T color_name2handle(char_u *name); 16 guicolor_T color_name2handle(char_u *name);
17 guicolor_T decode_hex_color(char_u *hex); 17 guicolor_T decode_hex_color(char_u *hex);
18 guicolor_T colorname2rgb(char_u *name); 18 guicolor_T colorname2rgb(char_u *name);
19 void save_colorname_hexstr(int r, int g, int b, char_u *name);
20 void load_default_colors_lists(void); 19 void load_default_colors_lists(void);
21 guicolor_T gui_get_color_cmn(char_u *name); 20 guicolor_T gui_get_color_cmn(char_u *name);
22 guicolor_T gui_get_rgb_color_cmn(int r, int g, int b); 21 guicolor_T gui_get_rgb_color_cmn(int r, int g, int b);
23 int get_cterm_attr_idx(int attr, int fg, int bg); 22 int get_cterm_attr_idx(int attr, int fg, int bg);
24 int get_tgc_attr_idx(int attr, guicolor_T fg, guicolor_T bg); 23 int get_tgc_attr_idx(int attr, guicolor_T fg, guicolor_T bg);