1/* ex_cmds.c */ 2void 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); 13int viminfo_error(char *errnum, char *message, char_u *line); 14int read_viminfo(char_u *file, int flags); 15void write_viminfo(char_u *file, int forceit); 16int viminfo_readline(vir_T *virp); 17char_u *viminfo_readstring(vir_T *virp, int off, int convert); 18void viminfo_writestring(FILE *fd, char_u *p); 19int barline_writestring(FILE *fd, char_u *s, int remaining_start); 20time_T vim_time(void); 21void do_fixdel(exarg_T *eap); 22void print_line_no_prefix(linenr_T lnum, int use_number, int list); 23void print_line(linenr_T lnum, int use_number, int list); 24int rename_buffer(char_u *new_fname); 25void ex_file(exarg_T *eap); 26void ex_update(exarg_T *eap); 27void ex_write(exarg_T *eap); 28int do_write(exarg_T *eap); 29int check_overwrite(exarg_T *eap, buf_T *buf, char_u *fname, char_u *ffname, int other); 30void ex_wnext(exarg_T *eap); 31void do_wqall(exarg_T *eap); 32int not_writing(void); 33int getfile(int fnum, char_u *ffname_arg, char_u *sfname_arg, int setpm, linenr_T lnum, int forceit); 34int do_ecmd(int fnum, char_u *ffname, char_u *sfname, exarg_T *eap, linenr_T newlnum, int flags, win_T *oldwin); 35void ex_append(exarg_T *eap); 36void ex_change(exarg_T *eap); 37void ex_z(exarg_T *eap); 38int check_restricted(void); 39int check_secure(void); 40void do_sub(exarg_T *eap); 41int do_sub_msg(int count_only); 42void ex_global(exarg_T *eap); 43void global_exe(char_u *cmd); 44int read_viminfo_sub_string(vir_T *virp, int force); 45void write_viminfo_sub_string(FILE *fp); 46void free_old_sub(void); 47int prepare_tagpreview(int undo_sync); 48void ex_help(exarg_T *eap); 49void ex_helpclose(exarg_T *eap); 50char_u *check_help_lang(char_u *arg); 51int help_heuristic(char_u *matched_string, int offset, int wrong_case); 52int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_lang); 53void fix_help_buffer(void); 54void ex_exusage(exarg_T *eap); 55void ex_viusage(exarg_T *eap); 56void ex_helptags(exarg_T *eap); 57void ex_smile(exarg_T *eap); 58void ex_drop(exarg_T *eap); 59char_u *skip_vimgrep_pat(char_u *p, char_u **s, int *flags); 60void ex_oldfiles(exarg_T *eap); 61/* vim: set ft=c : */ 62