comparison src/proto/term.pro @ 20619:68c206d3a251 v8.2.0863

patch 8.2.0863: cannot set a separate color for underline/undercurl Commit: https://github.com/vim/vim/commit/e023e88bed3f2e0a7ea4cf10cac2de80bc9c271c Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 31 16:42:30 2020 +0200 patch 8.2.0863: cannot set a separate color for underline/undercurl Problem: Cannot set a separate color for underline/undercurl. Solution: Add the t_AU and t_8u termcap codes. (Timur Celik, closes https://github.com/vim/vim/issues/6011)
author Bram Moolenaar <Bram@vim.org>
date Sun, 31 May 2020 16:45:03 +0200
parents d5d89c24eec7
children 5ffe112b1afd
comparison
equal deleted inserted replaced
20618:8b79d6353530 20619:68c206d3a251
24 void term_set_winpos(int x, int y); 24 void term_set_winpos(int x, int y);
25 int term_get_winpos(int *x, int *y, varnumber_T timeout); 25 int term_get_winpos(int *x, int *y, varnumber_T timeout);
26 void term_set_winsize(int height, int width); 26 void term_set_winsize(int height, int width);
27 void term_fg_color(int n); 27 void term_fg_color(int n);
28 void term_bg_color(int n); 28 void term_bg_color(int n);
29 void term_ul_color(int n);
29 char_u *term_bg_default(void); 30 char_u *term_bg_default(void);
30 void term_fg_rgb_color(guicolor_T rgb); 31 void term_fg_rgb_color(guicolor_T rgb);
31 void term_bg_rgb_color(guicolor_T rgb); 32 void term_bg_rgb_color(guicolor_T rgb);
33 void term_ul_rgb_color(guicolor_T rgb);
32 void term_settitle(char_u *title); 34 void term_settitle(char_u *title);
33 void term_push_title(int which); 35 void term_push_title(int which);
34 void term_pop_title(int which); 36 void term_pop_title(int which);
35 void ttest(int pairs); 37 void ttest(int pairs);
36 void add_long_to_buf(long_u val, char_u *dst); 38 void add_long_to_buf(long_u val, char_u *dst);