comparison src/proto/ex_cmds2.pro @ 17986:5c8906f653f5 v8.1.1989

patch 8.1.1989: the evalfunc.c file is still too big Commit: https://github.com/vim/vim/commit/af7645d3733fdd3cd2df03ec7b653601d26969ef Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 5 22:33:28 2019 +0200 patch 8.1.1989: the evalfunc.c file is still too big Problem: The evalfunc.c file is still too big. Solution: Move f_pathshorten() to filepath.c. Move f_cscope_connection() to if_cscope.c. Move diff_ functions to diff.c. Move timer_ functions to ex_cmds2.c. move callback functions to evalvars.c.
author Bram Moolenaar <Bram@vim.org>
date Thu, 05 Sep 2019 22:45:04 +0200
parents 0a5c615cd949
children d1e77015f60b
comparison
equal deleted inserted replaced
17985:9b43688b26bf 17986:5c8906f653f5
7 void stop_all_timers(void); 7 void stop_all_timers(void);
8 void add_timer_info(typval_T *rettv, timer_T *timer); 8 void add_timer_info(typval_T *rettv, timer_T *timer);
9 void add_timer_info_all(typval_T *rettv); 9 void add_timer_info_all(typval_T *rettv);
10 int set_ref_in_timer(int copyID); 10 int set_ref_in_timer(int copyID);
11 void timer_free_all(void); 11 void timer_free_all(void);
12 void f_timer_info(typval_T *argvars, typval_T *rettv);
13 void f_timer_pause(typval_T *argvars, typval_T *rettv);
14 void f_timer_start(typval_T *argvars, typval_T *rettv);
15 void f_timer_stop(typval_T *argvars, typval_T *rettv);
16 void f_timer_stopall(typval_T *argvars, typval_T *rettv);
12 int autowrite(buf_T *buf, int forceit); 17 int autowrite(buf_T *buf, int forceit);
13 void autowrite_all(void); 18 void autowrite_all(void);
14 int check_changed(buf_T *buf, int flags); 19 int check_changed(buf_T *buf, int flags);
15 void browse_save_fname(buf_T *buf); 20 void browse_save_fname(buf_T *buf);
16 void dialog_changed(buf_T *buf, int checkall); 21 void dialog_changed(buf_T *buf, int checkall);