7
|
1 /* ex_getln.c */
|
|
2 char_u *getcmdline __ARGS((int firstc, long count, int indent));
|
531
|
3 char_u *getcmdline_prompt __ARGS((int firstc, char_u *prompt, int attr, int xp_context, char_u *xp_arg));
|
633
|
4 int text_locked __ARGS((void));
|
|
5 void text_locked_msg __ARGS((void));
|
7
|
6 char_u *getexline __ARGS((int c, void *dummy, int indent));
|
186
|
7 char_u *getexmodeline __ARGS((int promptc, void *dummy, int indent));
|
7
|
8 int cmdline_overstrike __ARGS((void));
|
|
9 int cmdline_at_end __ARGS((void));
|
|
10 colnr_T cmdline_getvcol_cursor __ARGS((void));
|
359
|
11 void free_cmdline_buf __ARGS((void));
|
7
|
12 void putcmdline __ARGS((int c, int shift));
|
|
13 void unputcmdline __ARGS((void));
|
|
14 int put_on_cmdline __ARGS((char_u *str, int len, int redraw));
|
15
|
15 void cmdline_paste_str __ARGS((char_u *s, int literally));
|
7
|
16 void redrawcmdline __ARGS((void));
|
|
17 void redrawcmd __ARGS((void));
|
|
18 void compute_cmdrow __ARGS((void));
|
|
19 void gotocmdline __ARGS((int clr));
|
|
20 char_u *ExpandOne __ARGS((expand_T *xp, char_u *str, char_u *orig, int options, int mode));
|
|
21 void ExpandInit __ARGS((expand_T *xp));
|
|
22 void ExpandCleanup __ARGS((expand_T *xp));
|
|
23 void ExpandEscape __ARGS((expand_T *xp, char_u *str, int numfiles, char_u **files, int options));
|
|
24 void tilde_replace __ARGS((char_u *orig_pat, int num_files, char_u **files));
|
|
25 char_u *sm_gettail __ARGS((char_u *s));
|
|
26 char_u *addstar __ARGS((char_u *fname, int len, int context));
|
|
27 void set_cmd_context __ARGS((expand_T *xp, char_u *str, int len, int col));
|
|
28 int expand_cmdline __ARGS((expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches));
|
|
29 int ExpandGeneric __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file, char_u *((*func)(expand_T *, int))));
|
|
30 char_u *globpath __ARGS((char_u *path, char_u *file));
|
355
|
31 void init_history __ARGS((void));
|
7
|
32 int get_histtype __ARGS((char_u *name));
|
|
33 void add_to_history __ARGS((int histype, char_u *new_entry, int in_map, int sep));
|
|
34 int get_history_idx __ARGS((int histype));
|
|
35 char_u *get_cmdline_str __ARGS((void));
|
|
36 int get_cmdline_pos __ARGS((void));
|
|
37 int set_cmdline_pos __ARGS((int pos));
|
531
|
38 int get_cmdline_type __ARGS((void));
|
7
|
39 char_u *get_history_entry __ARGS((int histype, int idx));
|
|
40 int clr_history __ARGS((int histype));
|
|
41 int del_history_entry __ARGS((int histype, char_u *str));
|
|
42 int del_history_idx __ARGS((int histype, int idx));
|
|
43 void remove_key_from_history __ARGS((void));
|
|
44 int get_list_range __ARGS((char_u **str, int *num1, int *num2));
|
|
45 void ex_history __ARGS((exarg_T *eap));
|
|
46 void prepare_viminfo_history __ARGS((int asklen));
|
|
47 int read_viminfo_history __ARGS((vir_T *virp));
|
|
48 void finish_viminfo_history __ARGS((void));
|
|
49 void write_viminfo_history __ARGS((FILE *fp));
|
|
50 void cmd_pchar __ARGS((int c, int offset));
|
|
51 int cmd_gchar __ARGS((int offset));
|
|
52 char_u *script_get __ARGS((exarg_T *eap, char_u *cmd));
|
|
53 /* vim: set ft=c : */
|