forked from aniani/vim
Problem: Time and timer related code is spread out.
Solution: Move time and timer related code to a new file. (Yegappan
Lakshmanan, closes #5604)
25 lines
796 B
C
25 lines
796 B
C
/* ex_cmds2.c */
|
|
int autowrite(buf_T *buf, int forceit);
|
|
void autowrite_all(void);
|
|
int check_changed(buf_T *buf, int flags);
|
|
void browse_save_fname(buf_T *buf);
|
|
void dialog_changed(buf_T *buf, int checkall);
|
|
int can_abandon(buf_T *buf, int forceit);
|
|
int check_changed_any(int hidden, int unload);
|
|
int check_fname(void);
|
|
int buf_write_all(buf_T *buf, int forceit);
|
|
void ex_listdo(exarg_T *eap);
|
|
void ex_compiler(exarg_T *eap);
|
|
void init_pyxversion(void);
|
|
void ex_pyxfile(exarg_T *eap);
|
|
void ex_pyx(exarg_T *eap);
|
|
void ex_pyxdo(exarg_T *eap);
|
|
void ex_checktime(exarg_T *eap);
|
|
char_u *get_mess_lang(void);
|
|
void set_lang_var(void);
|
|
void ex_language(exarg_T *eap);
|
|
void free_locales(void);
|
|
char_u *get_lang_arg(expand_T *xp, int idx);
|
|
char_u *get_locales(expand_T *xp, int idx);
|
|
/* vim: set ft=c : */
|