comparison src/proto/term.pro @ 18679:fd95d4dbeb37 v8.1.2331

patch 8.1.2331: the option.c file is still very big Commit: https://github.com/vim/vim/commit/7bae0b1bc84a95d565ffab38cf7f82ad21c656b6 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 21 22:14:18 2019 +0100 patch 8.1.2331: the option.c file is still very big Problem: The option.c file is still very big. Solution: Move a few functions to where they fit better. (Yegappan Lakshmanan, closes #4895)
author Bram Moolenaar <Bram@vim.org>
date Thu, 21 Nov 2019 22:15:03 +0100
parents 506bf60a30a0
children 14d2a210fab1
comparison
equal deleted inserted replaced
18678:cb4a4b71df4a 18679:fd95d4dbeb37
23 void term_set_winpos(int x, int y); 23 void term_set_winpos(int x, int y);
24 int term_get_winpos(int *x, int *y, varnumber_T timeout); 24 int term_get_winpos(int *x, int *y, varnumber_T timeout);
25 void term_set_winsize(int height, int width); 25 void term_set_winsize(int height, int width);
26 void term_fg_color(int n); 26 void term_fg_color(int n);
27 void term_bg_color(int n); 27 void term_bg_color(int n);
28 char_u *term_bg_default(void);
28 void term_fg_rgb_color(guicolor_T rgb); 29 void term_fg_rgb_color(guicolor_T rgb);
29 void term_bg_rgb_color(guicolor_T rgb); 30 void term_bg_rgb_color(guicolor_T rgb);
30 void term_settitle(char_u *title); 31 void term_settitle(char_u *title);
31 void term_push_title(int which); 32 void term_push_title(int which);
32 void term_pop_title(int which); 33 void term_pop_title(int which);