blob: 298de8fb9710dbd8e433d3411f33a7a1339d4496 [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);
Bram Moolenaarc447d8d2018-12-18 21:56:28 +010025int 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 +010026int do_ecmd(int fnum, char_u *ffname, char_u *sfname, exarg_T *eap, linenr_T newlnum, int flags, win_T *oldwin);
27void ex_append(exarg_T *eap);
28void ex_change(exarg_T *eap);
29void ex_z(exarg_T *eap);
30int check_restricted(void);
31int check_secure(void);
32void do_sub(exarg_T *eap);
33int do_sub_msg(int count_only);
34void ex_global(exarg_T *eap);
35void global_exe(char_u *cmd);
Bram Moolenaarc3328162019-07-23 22:15:25 +020036char_u *get_old_sub(void);
37void set_old_sub(char_u *val);
Bram Moolenaaref269542016-01-19 13:22:12 +010038void free_old_sub(void);
Bram Moolenaar576a4a62019-08-18 15:25:17 +020039int prepare_tagpreview(int undo_sync, int use_previewpopup, int use_popup);
Bram Moolenaaref269542016-01-19 13:22:12 +010040void ex_help(exarg_T *eap);
41void ex_helpclose(exarg_T *eap);
42char_u *check_help_lang(char_u *arg);
43int help_heuristic(char_u *matched_string, int offset, int wrong_case);
44int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_lang);
45void fix_help_buffer(void);
46void ex_exusage(exarg_T *eap);
47void ex_viusage(exarg_T *eap);
48void ex_helptags(exarg_T *eap);
Bram Moolenaaref269542016-01-19 13:22:12 +010049void ex_smile(exarg_T *eap);
50void ex_drop(exarg_T *eap);
Bram Moolenaar9baf2972016-08-21 22:39:35 +020051char_u *skip_vimgrep_pat(char_u *p, char_u **s, int *flags);
Bram Moolenaare11d61a2016-08-20 18:36:54 +020052void ex_oldfiles(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000053/* vim: set ft=c : */