xref: /vim-8.2.3635/src/proto/ex_cmds.pro (revision ed37d9b3)
1/* ex_cmds.c */
2void do_ascii(exarg_T *eap);
3void ex_align(exarg_T *eap);
4void ex_sort(exarg_T *eap);
5int do_move(linenr_T line1, linenr_T line2, linenr_T dest);
6void ex_copy(linenr_T line1, linenr_T line2, linenr_T n);
7void free_prev_shellcmd(void);
8void do_bang(int addr_count, exarg_T *eap, int forceit, int do_in, int do_out);
9void do_shell(char_u *cmd, int flags);
10char_u *make_filter_cmd(char_u *cmd, char_u *itmp, char_u *otmp);
11void append_redir(char_u *buf, int buflen, char_u *opt, char_u *fname);
12void do_fixdel(exarg_T *eap);
13void print_line_no_prefix(linenr_T lnum, int use_number, int list);
14void print_line(linenr_T lnum, int use_number, int list);
15int rename_buffer(char_u *new_fname);
16void ex_file(exarg_T *eap);
17void ex_update(exarg_T *eap);
18void ex_write(exarg_T *eap);
19int do_write(exarg_T *eap);
20int check_overwrite(exarg_T *eap, buf_T *buf, char_u *fname, char_u *ffname, int other);
21void ex_wnext(exarg_T *eap);
22void do_wqall(exarg_T *eap);
23int getfile(int fnum, char_u *ffname_arg, char_u *sfname_arg, int setpm, linenr_T lnum, int forceit);
24int do_ecmd(int fnum, char_u *ffname, char_u *sfname, exarg_T *eap, linenr_T newlnum, int flags, win_T *oldwin);
25void ex_append(exarg_T *eap);
26void ex_change(exarg_T *eap);
27void ex_z(exarg_T *eap);
28int check_restricted(void);
29int check_secure(void);
30void do_sub(exarg_T *eap);
31int do_sub_msg(int count_only);
32void ex_global(exarg_T *eap);
33void global_exe(char_u *cmd);
34char_u *get_old_sub(void);
35void set_old_sub(char_u *val);
36void free_old_sub(void);
37int prepare_tagpreview(int undo_sync, int use_previewpopup, use_popup_T use_popup);
38void ex_help(exarg_T *eap);
39void ex_helpclose(exarg_T *eap);
40char_u *check_help_lang(char_u *arg);
41int help_heuristic(char_u *matched_string, int offset, int wrong_case);
42int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_lang);
43void fix_help_buffer(void);
44void ex_exusage(exarg_T *eap);
45void ex_viusage(exarg_T *eap);
46void ex_helptags(exarg_T *eap);
47void ex_smile(exarg_T *eap);
48void ex_drop(exarg_T *eap);
49char_u *skip_vimgrep_pat(char_u *p, char_u **s, int *flags);
50void ex_oldfiles(exarg_T *eap);
51/* vim: set ft=c : */
52