comparison src/proto/term.pro @ 19178:f7081bd2680e v8.2.0148

patch 8.2.0148: mapping related function in wrong source file Commit: https://github.com/vim/vim/commit/7f51bbe0d19f1f0cb0321326f45a17b4f5155f89 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 24 20:21:19 2020 +0100 patch 8.2.0148: mapping related function in wrong source file Problem: Mapping related function in wrong source file. Solution: Move the function. Add a few more test cases. (Yegappan Lakshmanan, closes #5528)
author Bram Moolenaar <Bram@vim.org>
date Fri, 24 Jan 2020 20:30:04 +0100
parents 14d2a210fab1
children 08f4dc2ba716
comparison
equal deleted inserted replaced
19177:0d7b7b121ca6 19178:f7081bd2680e
70 void term_get_fg_color(char_u *r, char_u *g, char_u *b); 70 void term_get_fg_color(char_u *r, char_u *g, char_u *b);
71 void term_get_bg_color(char_u *r, char_u *g, char_u *b); 71 void term_get_bg_color(char_u *r, char_u *g, char_u *b);
72 char_u *replace_termcodes(char_u *from, char_u **bufp, int flags, int *did_simplify); 72 char_u *replace_termcodes(char_u *from, char_u **bufp, int flags, int *did_simplify);
73 void show_termcodes(void); 73 void show_termcodes(void);
74 int show_one_termcode(char_u *name, char_u *code, int printit); 74 int show_one_termcode(char_u *name, char_u *code, int printit);
75 char_u *translate_mapping(char_u *str);
76 void update_tcap(int attr); 75 void update_tcap(int attr);
77 void swap_tcap(void); 76 void swap_tcap(void);
78 guicolor_T gui_get_color_cmn(char_u *name); 77 guicolor_T gui_get_color_cmn(char_u *name);
79 guicolor_T gui_get_rgb_color_cmn(int r, int g, int b); 78 guicolor_T gui_get_rgb_color_cmn(int r, int g, int b);
80 void cterm_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx); 79 void cterm_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx);