7
|
1 /* ex_docmd.c */
|
|
2 void do_exmode __ARGS((int improved));
|
|
3 int do_cmdline_cmd __ARGS((char_u *cmd));
|
|
4 int do_cmdline __ARGS((char_u *cmdline, char_u *(*getline)(int, void *, int), void *cookie, int flags));
|
|
5 int getline_equal __ARGS((char_u *(*getline)(int, void *, int), void *cookie, char_u *(*func)(int, void *, int)));
|
|
6 void *getline_cookie __ARGS((char_u *(*getline)(int, void *, int), void *cookie));
|
95
|
7 int checkforcmd __ARGS((char_u **pp, char *cmd, int len));
|
7
|
8 int cmd_exists __ARGS((char_u *name));
|
|
9 char_u *set_one_cmd_context __ARGS((expand_T *xp, char_u *buff));
|
|
10 char_u *skip_range __ARGS((char_u *cmd, int *ctx));
|
|
11 void ex_ni __ARGS((exarg_T *eap));
|
|
12 int expand_filename __ARGS((exarg_T *eap, char_u **cmdlinep, char_u **errormsgp));
|
|
13 void separate_nextcmd __ARGS((exarg_T *eap));
|
|
14 int ends_excmd __ARGS((int c));
|
|
15 char_u *find_nextcmd __ARGS((char_u *p));
|
|
16 char_u *check_nextcmd __ARGS((char_u *p));
|
|
17 char_u *get_command_name __ARGS((expand_T *xp, int idx));
|
355
|
18 void ex_comclear __ARGS((exarg_T *eap));
|
7
|
19 void uc_clear __ARGS((garray_T *gap));
|
|
20 char_u *get_user_commands __ARGS((expand_T *xp, int idx));
|
|
21 char_u *get_user_cmd_flags __ARGS((expand_T *xp, int idx));
|
|
22 char_u *get_user_cmd_nargs __ARGS((expand_T *xp, int idx));
|
|
23 char_u *get_user_cmd_complete __ARGS((expand_T *xp, int idx));
|
531
|
24 int parse_compl_arg __ARGS((char_u *value, int vallen, int *complp, long *argt, char_u **compl_arg));
|
7
|
25 void not_exiting __ARGS((void));
|
|
26 void handle_drop __ARGS((int filec, char_u **filev, int split));
|
23
|
27 void alist_clear __ARGS((alist_T *al));
|
7
|
28 void alist_init __ARGS((alist_T *al));
|
|
29 void alist_unlink __ARGS((alist_T *al));
|
|
30 void alist_new __ARGS((void));
|
41
|
31 void alist_expand __ARGS((int *fnum_list, int fnum_len));
|
|
32 void alist_set __ARGS((alist_T *al, int count, char_u **files, int use_curbuf, int *fnum_list, int fnum_len));
|
7
|
33 void alist_add __ARGS((alist_T *al, char_u *fname, int set_fnum));
|
|
34 void alist_slash_adjust __ARGS((void));
|
|
35 void ex_splitview __ARGS((exarg_T *eap));
|
|
36 void do_exedit __ARGS((exarg_T *eap, win_T *old_curwin));
|
359
|
37 void free_cd_dir __ARGS((void));
|
7
|
38 void do_sleep __ARGS((long msec));
|
167
|
39 int vim_mkdir_emsg __ARGS((char_u *name, int prot));
|
7
|
40 FILE *open_exfile __ARGS((char_u *fname, int forceit, char *mode));
|
|
41 void update_topline_cursor __ARGS((void));
|
36
|
42 void exec_normal_cmd __ARGS((char_u *cmd, int remap, int silent));
|
7
|
43 char_u *eval_vars __ARGS((char_u *src, int *usedlen, linenr_T *lnump, char_u **errormsg, char_u *srcstart));
|
|
44 char_u *expand_sfile __ARGS((char_u *arg));
|
|
45 int put_eol __ARGS((FILE *fd));
|
|
46 int put_line __ARGS((FILE *fd, char *s));
|
|
47 void dialog_msg __ARGS((char_u *buff, char *format, char_u *fname));
|
|
48 /* vim: set ft=c : */
|