blob: 783ed11e9420ec5c8df1835a26554353fef51c95 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* ex_cmds.c */
Bram Moolenaaref269542016-01-19 13:22:12 +01002void do_ascii(exarg_T *eap);
3void ex_align(exarg_T *eap);
4void ex_sort(exarg_T *eap);
5void ex_retab(exarg_T *eap);
6int do_move(linenr_T line1, linenr_T line2, linenr_T dest);
7void ex_copy(linenr_T line1, linenr_T line2, linenr_T n);
8void free_prev_shellcmd(void);
9void do_bang(int addr_count, exarg_T *eap, int forceit, int do_in, int do_out);
10void do_shell(char_u *cmd, int flags);
11char_u *make_filter_cmd(char_u *cmd, char_u *itmp, char_u *otmp);
12void append_redir(char_u *buf, int buflen, char_u *opt, char_u *fname);
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +020013time_T vim_time(void);
Bram Moolenaaref269542016-01-19 13:22:12 +010014void do_fixdel(exarg_T *eap);
15void print_line_no_prefix(linenr_T lnum, int use_number, int list);
16void print_line(linenr_T lnum, int use_number, int list);
17int rename_buffer(char_u *new_fname);
18void ex_file(exarg_T *eap);
19void ex_update(exarg_T *eap);
20void ex_write(exarg_T *eap);
21int do_write(exarg_T *eap);
22int check_overwrite(exarg_T *eap, buf_T *buf, char_u *fname, char_u *ffname, int other);
23void ex_wnext(exarg_T *eap);
24void do_wqall(exarg_T *eap);
25int not_writing(void);
Bram Moolenaarc447d8d2018-12-18 21:56:28 +010026int getfile(int fnum, char_u *ffname_arg, char_u *sfname_arg, int setpm, linenr_T lnum, int forceit);
Bram Moolenaaref269542016-01-19 13:22:12 +010027int do_ecmd(int fnum, char_u *ffname, char_u *sfname, exarg_T *eap, linenr_T newlnum, int flags, win_T *oldwin);
28void ex_append(exarg_T *eap);
29void ex_change(exarg_T *eap);
30void ex_z(exarg_T *eap);
31int check_restricted(void);
32int check_secure(void);
33void do_sub(exarg_T *eap);
34int do_sub_msg(int count_only);
35void ex_global(exarg_T *eap);
36void global_exe(char_u *cmd);
37int read_viminfo_sub_string(vir_T *virp, int force);
38void write_viminfo_sub_string(FILE *fp);
39void free_old_sub(void);
40int prepare_tagpreview(int undo_sync);
41void ex_help(exarg_T *eap);
42void ex_helpclose(exarg_T *eap);
43char_u *check_help_lang(char_u *arg);
44int help_heuristic(char_u *matched_string, int offset, int wrong_case);
45int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_lang);
46void fix_help_buffer(void);
47void ex_exusage(exarg_T *eap);
48void ex_viusage(exarg_T *eap);
49void ex_helptags(exarg_T *eap);
Bram Moolenaaref269542016-01-19 13:22:12 +010050void ex_smile(exarg_T *eap);
51void ex_drop(exarg_T *eap);
Bram Moolenaar9baf2972016-08-21 22:39:35 +020052char_u *skip_vimgrep_pat(char_u *p, char_u **s, int *flags);
Bram Moolenaare11d61a2016-08-20 18:36:54 +020053void ex_oldfiles(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000054/* vim: set ft=c : */