Mercurial > vim
annotate src/proto/ex_cmds.pro @ 5336:c514693882b9 v7.4.021
updated for version 7.4.021
Problem: NFA regexp: Using \ze in one branch which doesn't match may cause
end of another branch to be wrong. (William Fugh)
Solution: Set end position if it wasn't set yet.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Thu, 05 Sep 2013 21:15:44 +0200 |
parents | fa39483a1363 |
children | cb5480096f1b |
rev | line source |
---|---|
7 | 1 /* ex_cmds.c */ |
1125 | 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)); | |
1872 | 12 void append_redir __ARGS((char_u *buf, int buflen, char_u *opt, char_u *fname)); |
1125 | 13 int viminfo_error __ARGS((char *errnum, char *message, char_u *line)); |
1733 | 14 int read_viminfo __ARGS((char_u *file, int flags)); |
1125 | 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)); | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
3486
diff
changeset
|
22 int rename_buffer __ARGS((char_u *new_fname)); |
1125 | 23 void ex_file __ARGS((exarg_T *eap)); |
24 void ex_update __ARGS((exarg_T *eap)); | |
25 void ex_write __ARGS((exarg_T *eap)); | |
26 int do_write __ARGS((exarg_T *eap)); | |
3486 | 27 int check_overwrite __ARGS((exarg_T *eap, buf_T *buf, char_u *fname, char_u *ffname, int other)); |
1125 | 28 void ex_wnext __ARGS((exarg_T *eap)); |
29 void do_wqall __ARGS((exarg_T *eap)); | |
30 int not_writing __ARGS((void)); | |
31 int getfile __ARGS((int fnum, char_u *ffname, char_u *sfname, int setpm, linenr_T lnum, int forceit)); | |
1743 | 32 int do_ecmd __ARGS((int fnum, char_u *ffname, char_u *sfname, exarg_T *eap, linenr_T newlnum, int flags, win_T *oldwin)); |
1125 | 33 void ex_append __ARGS((exarg_T *eap)); |
34 void ex_change __ARGS((exarg_T *eap)); | |
35 void ex_z __ARGS((exarg_T *eap)); | |
36 int check_restricted __ARGS((void)); | |
37 int check_secure __ARGS((void)); | |
38 void do_sub __ARGS((exarg_T *eap)); | |
39 int do_sub_msg __ARGS((int count_only)); | |
40 void ex_global __ARGS((exarg_T *eap)); | |
41 void global_exe __ARGS((char_u *cmd)); | |
42 int read_viminfo_sub_string __ARGS((vir_T *virp, int force)); | |
43 void write_viminfo_sub_string __ARGS((FILE *fp)); | |
44 void free_old_sub __ARGS((void)); | |
45 int prepare_tagpreview __ARGS((int undo_sync)); | |
46 void ex_help __ARGS((exarg_T *eap)); | |
47 char_u *check_help_lang __ARGS((char_u *arg)); | |
48 int help_heuristic __ARGS((char_u *matched_string, int offset, int wrong_case)); | |
49 int find_help_tags __ARGS((char_u *arg, int *num_matches, char_u ***matches, int keep_lang)); | |
50 void fix_help_buffer __ARGS((void)); | |
51 void ex_exusage __ARGS((exarg_T *eap)); | |
52 void ex_viusage __ARGS((exarg_T *eap)); | |
53 void ex_helptags __ARGS((exarg_T *eap)); | |
54 void ex_sign __ARGS((exarg_T *eap)); | |
55 void sign_gui_started __ARGS((void)); | |
56 int sign_get_attr __ARGS((int typenr, int line)); | |
57 char_u *sign_get_text __ARGS((int typenr)); | |
58 void *sign_get_image __ARGS((int typenr)); | |
59 char_u *sign_typenr2name __ARGS((int typenr)); | |
1868 | 60 void free_signs __ARGS((void)); |
61 char_u *get_sign_name __ARGS((expand_T *xp, int idx)); | |
62 void set_context_in_sign_cmd __ARGS((expand_T *xp, char_u *arg)); | |
1125 | 63 void ex_drop __ARGS((exarg_T *eap)); |
7 | 64 /* vim: set ft=c : */ |