Mercurial > hg > RemoteEditor > vim7
comparison src/proto/ex_cmds.pro @ 0:76efa0be13f1
Initial revision
author | atsuki |
---|---|
date | Sat, 10 Nov 2007 15:07:22 +0900 |
parents | |
children | c16898406ff2 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:76efa0be13f1 |
---|---|
1 /* ex_cmds.c */ | |
2 void do_ascii __ARGS((exarg_T *eap)); | |
3 void ex_align __ARGS((exarg_T *eap)); | |
4 void ex_sort __ARGS((exarg_T *eap)); | |
5 void ex_retab __ARGS((exarg_T *eap)); | |
6 int do_move __ARGS((linenr_T line1, linenr_T line2, linenr_T dest)); | |
7 void ex_copy __ARGS((linenr_T line1, linenr_T line2, linenr_T n)); | |
8 void free_prev_shellcmd __ARGS((void)); | |
9 void do_bang __ARGS((int addr_count, exarg_T *eap, int forceit, int do_in, int do_out)); | |
10 void do_shell __ARGS((char_u *cmd, int flags)); | |
11 char_u *make_filter_cmd __ARGS((char_u *cmd, char_u *itmp, char_u *otmp)); | |
12 void append_redir __ARGS((char_u *buf, char_u *opt, char_u *fname)); | |
13 int viminfo_error __ARGS((char *errnum, char *message, char_u *line)); | |
14 int read_viminfo __ARGS((char_u *file, int want_info, int want_marks, int forceit)); | |
15 void write_viminfo __ARGS((char_u *file, int forceit)); | |
16 int viminfo_readline __ARGS((vir_T *virp)); | |
17 char_u *viminfo_readstring __ARGS((vir_T *virp, int off, int convert)); | |
18 void viminfo_writestring __ARGS((FILE *fd, char_u *p)); | |
19 void do_fixdel __ARGS((exarg_T *eap)); | |
20 void print_line_no_prefix __ARGS((linenr_T lnum, int use_number, int list)); | |
21 void print_line __ARGS((linenr_T lnum, int use_number, int list)); | |
22 void ex_file __ARGS((exarg_T *eap)); | |
23 void ex_update __ARGS((exarg_T *eap)); | |
24 void ex_write __ARGS((exarg_T *eap)); | |
25 int do_write __ARGS((exarg_T *eap)); | |
26 void ex_wnext __ARGS((exarg_T *eap)); | |
27 void do_wqall __ARGS((exarg_T *eap)); | |
28 int not_writing __ARGS((void)); | |
29 int getfile __ARGS((int fnum, char_u *ffname, char_u *sfname, int setpm, linenr_T lnum, int forceit)); | |
30 int do_ecmd __ARGS((int fnum, char_u *ffname, char_u *sfname, exarg_T *eap, linenr_T newlnum, int flags)); | |
31 void ex_append __ARGS((exarg_T *eap)); | |
32 void ex_change __ARGS((exarg_T *eap)); | |
33 void ex_z __ARGS((exarg_T *eap)); | |
34 int check_restricted __ARGS((void)); | |
35 int check_secure __ARGS((void)); | |
36 void do_sub __ARGS((exarg_T *eap)); | |
37 int do_sub_msg __ARGS((int count_only)); | |
38 void ex_global __ARGS((exarg_T *eap)); | |
39 void global_exe __ARGS((char_u *cmd)); | |
40 int read_viminfo_sub_string __ARGS((vir_T *virp, int force)); | |
41 void write_viminfo_sub_string __ARGS((FILE *fp)); | |
42 void free_old_sub __ARGS((void)); | |
43 int prepare_tagpreview __ARGS((int undo_sync)); | |
44 void ex_help __ARGS((exarg_T *eap)); | |
45 char_u *check_help_lang __ARGS((char_u *arg)); | |
46 int help_heuristic __ARGS((char_u *matched_string, int offset, int wrong_case)); | |
47 int find_help_tags __ARGS((char_u *arg, int *num_matches, char_u ***matches, int keep_lang)); | |
48 void fix_help_buffer __ARGS((void)); | |
49 void ex_exusage __ARGS((exarg_T *eap)); | |
50 void ex_viusage __ARGS((exarg_T *eap)); | |
51 void ex_helptags __ARGS((exarg_T *eap)); | |
52 void ex_sign __ARGS((exarg_T *eap)); | |
53 void sign_gui_started __ARGS((void)); | |
54 int sign_get_attr __ARGS((int typenr, int line)); | |
55 char_u *sign_get_text __ARGS((int typenr)); | |
56 void *sign_get_image __ARGS((int typenr)); | |
57 char_u *sign_typenr2name __ARGS((int typenr)); | |
58 void ex_drop __ARGS((exarg_T *eap)); | |
59 /* vim: set ft=c : */ |