blob: e0fd3c6c7f9f1fee86e7c648037c88885bdf14ed [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* ex_cmds2.c */
Bram Moolenaar56bc8e22018-05-10 18:05:56 +02002long proftime_time_left(proftime_T *due, proftime_T *now);
Bram Moolenaar623e2632016-07-30 22:47:56 +02003timer_T *create_timer(long msec, int repeat);
Bram Moolenaar975b5272016-03-15 23:10:59 +01004long check_due_timer(void);
Bram Moolenaar75537a92016-09-05 22:45:28 +02005timer_T *find_timer(long id);
Bram Moolenaar975b5272016-03-15 23:10:59 +01006void stop_timer(timer_T *timer);
Bram Moolenaarb73598e2016-08-07 18:22:53 +02007void stop_all_timers(void);
Bram Moolenaar8e97bd72016-08-06 22:05:07 +02008void add_timer_info(typval_T *rettv, timer_T *timer);
9void add_timer_info_all(typval_T *rettv);
Bram Moolenaare3188e22016-05-31 21:13:04 +020010int set_ref_in_timer(int copyID);
Bram Moolenaar623e2632016-07-30 22:47:56 +020011void timer_free_all(void);
Bram Moolenaaref269542016-01-19 13:22:12 +010012int autowrite(buf_T *buf, int forceit);
13void autowrite_all(void);
14int check_changed(buf_T *buf, int flags);
15void browse_save_fname(buf_T *buf);
16void dialog_changed(buf_T *buf, int checkall);
17int can_abandon(buf_T *buf, int forceit);
18int check_changed_any(int hidden, int unload);
19int check_fname(void);
20int buf_write_all(buf_T *buf, int forceit);
Bram Moolenaaref269542016-01-19 13:22:12 +010021void ex_listdo(exarg_T *eap);
22void ex_compiler(exarg_T *eap);
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +010023void init_pyxversion(void);
24void ex_pyxfile(exarg_T *eap);
25void ex_pyx(exarg_T *eap);
26void ex_pyxdo(exarg_T *eap);
Bram Moolenaaref269542016-01-19 13:22:12 +010027void ex_checktime(exarg_T *eap);
28char_u *get_mess_lang(void);
29void set_lang_var(void);
30void ex_language(exarg_T *eap);
31void free_locales(void);
32char_u *get_lang_arg(expand_T *xp, int idx);
33char_u *get_locales(expand_T *xp, int idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +000034/* vim: set ft=c : */