1
0
forked from aniani/vim
Files
vim/src/proto/ex_docmd.pro

53 lines
2.7 KiB
Prolog
Raw Normal View History

2004-06-13 20:20:40 +00:00
/* ex_docmd.c */
void do_exmode __ARGS((int improved));
int do_cmdline_cmd __ARGS((char_u *cmd));
int do_cmdline __ARGS((char_u *cmdline, char_u *(*getline)(int, void *, int), void *cookie, int flags));
int getline_equal __ARGS((char_u *(*getline)(int, void *, int), void *cookie, char_u *(*func)(int, void *, int)));
void *getline_cookie __ARGS((char_u *(*getline)(int, void *, int), void *cookie));
2005-01-11 21:29:04 +00:00
int checkforcmd __ARGS((char_u **pp, char *cmd, int len));
2004-06-13 20:20:40 +00:00
int cmd_exists __ARGS((char_u *name));
char_u *set_one_cmd_context __ARGS((expand_T *xp, char_u *buff));
char_u *skip_range __ARGS((char_u *cmd, int *ctx));
void ex_ni __ARGS((exarg_T *eap));
int expand_filename __ARGS((exarg_T *eap, char_u **cmdlinep, char_u **errormsgp));
void separate_nextcmd __ARGS((exarg_T *eap));
int ends_excmd __ARGS((int c));
char_u *find_nextcmd __ARGS((char_u *p));
char_u *check_nextcmd __ARGS((char_u *p));
char_u *get_command_name __ARGS((expand_T *xp, int idx));
2005-06-24 23:01:23 +00:00
void ex_comclear __ARGS((exarg_T *eap));
2004-06-13 20:20:40 +00:00
void uc_clear __ARGS((garray_T *gap));
char_u *get_user_commands __ARGS((expand_T *xp, int idx));
char_u *get_user_cmd_flags __ARGS((expand_T *xp, int idx));
char_u *get_user_cmd_nargs __ARGS((expand_T *xp, int idx));
char_u *get_user_cmd_complete __ARGS((expand_T *xp, int idx));
2005-09-20 23:22:24 +00:00
int parse_compl_arg __ARGS((char_u *value, int vallen, int *complp, long *argt, char_u **compl_arg));
2004-06-13 20:20:40 +00:00
void not_exiting __ARGS((void));
2006-02-16 22:11:02 +00:00
void tabpage_close __ARGS((int forceit));
void tabpage_close_other __ARGS((tabpage_T *tp, int forceit));
2006-03-11 21:22:53 +00:00
void ex_all __ARGS((exarg_T *eap));
2004-06-13 20:20:40 +00:00
void handle_drop __ARGS((int filec, char_u **filev, int split));
2004-09-06 17:44:46 +00:00
void alist_clear __ARGS((alist_T *al));
2004-06-13 20:20:40 +00:00
void alist_init __ARGS((alist_T *al));
void alist_unlink __ARGS((alist_T *al));
void alist_new __ARGS((void));
2004-12-27 21:59:20 +00:00
void alist_expand __ARGS((int *fnum_list, int fnum_len));
void alist_set __ARGS((alist_T *al, int count, char_u **files, int use_curbuf, int *fnum_list, int fnum_len));
2004-06-13 20:20:40 +00:00
void alist_add __ARGS((alist_T *al, char_u *fname, int set_fnum));
void alist_slash_adjust __ARGS((void));
void ex_splitview __ARGS((exarg_T *eap));
2006-02-23 21:26:58 +00:00
void tabpage_new __ARGS((void));
2004-06-13 20:20:40 +00:00
void do_exedit __ARGS((exarg_T *eap, win_T *old_curwin));
2005-06-25 23:04:51 +00:00
void free_cd_dir __ARGS((void));
2004-06-13 20:20:40 +00:00
void do_sleep __ARGS((long msec));
2005-02-22 08:39:57 +00:00
int vim_mkdir_emsg __ARGS((char_u *name, int prot));
2004-06-13 20:20:40 +00:00
FILE *open_exfile __ARGS((char_u *fname, int forceit, char *mode));
void update_topline_cursor __ARGS((void));
2004-12-09 21:34:53 +00:00
void exec_normal_cmd __ARGS((char_u *cmd, int remap, int silent));
2004-06-13 20:20:40 +00:00
char_u *eval_vars __ARGS((char_u *src, int *usedlen, linenr_T *lnump, char_u **errormsg, char_u *srcstart));
char_u *expand_sfile __ARGS((char_u *arg));
int put_eol __ARGS((FILE *fd));
int put_line __ARGS((FILE *fd, char *s));
void dialog_msg __ARGS((char_u *buff, char *format, char_u *fname));
/* vim: set ft=c : */