blob: 688eb3d8f0d6c4582d6c90402ca0c630d12bb2a3 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* ex_getln.c */
2char_u *getcmdline __ARGS((int firstc, long count, int indent));
3char_u *getcmdline_prompt __ARGS((int firstc, char_u *prompt, int attr));
4char_u *getexline __ARGS((int c, void *dummy, int indent));
Bram Moolenaar5ea7e8b2005-03-07 23:04:48 +00005char_u *getexmodeline __ARGS((int promptc, void *dummy, int indent));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006int cmdline_overstrike __ARGS((void));
7int cmdline_at_end __ARGS((void));
8colnr_T cmdline_getvcol_cursor __ARGS((void));
9void putcmdline __ARGS((int c, int shift));
10void unputcmdline __ARGS((void));
11int put_on_cmdline __ARGS((char_u *str, int len, int redraw));
Bram Moolenaar8299df92004-07-10 09:47:34 +000012void cmdline_paste_str __ARGS((char_u *s, int literally));
Bram Moolenaar071d4272004-06-13 20:20:40 +000013void redrawcmdline __ARGS((void));
14void redrawcmd __ARGS((void));
15void compute_cmdrow __ARGS((void));
16void gotocmdline __ARGS((int clr));
17char_u *ExpandOne __ARGS((expand_T *xp, char_u *str, char_u *orig, int options, int mode));
18void ExpandInit __ARGS((expand_T *xp));
19void ExpandCleanup __ARGS((expand_T *xp));
20void ExpandEscape __ARGS((expand_T *xp, char_u *str, int numfiles, char_u **files, int options));
21void tilde_replace __ARGS((char_u *orig_pat, int num_files, char_u **files));
22char_u *sm_gettail __ARGS((char_u *s));
23char_u *addstar __ARGS((char_u *fname, int len, int context));
24void set_cmd_context __ARGS((expand_T *xp, char_u *str, int len, int col));
25int expand_cmdline __ARGS((expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches));
26int ExpandGeneric __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file, char_u *((*func)(expand_T *, int))));
27char_u *globpath __ARGS((char_u *path, char_u *file));
Bram Moolenaar0a5fe212005-06-24 23:01:23 +000028void init_history __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000029int get_histtype __ARGS((char_u *name));
30void add_to_history __ARGS((int histype, char_u *new_entry, int in_map, int sep));
31int get_history_idx __ARGS((int histype));
32char_u *get_cmdline_str __ARGS((void));
33int get_cmdline_pos __ARGS((void));
34int set_cmdline_pos __ARGS((int pos));
35char_u *get_history_entry __ARGS((int histype, int idx));
36int clr_history __ARGS((int histype));
37int del_history_entry __ARGS((int histype, char_u *str));
38int del_history_idx __ARGS((int histype, int idx));
39void remove_key_from_history __ARGS((void));
40int get_list_range __ARGS((char_u **str, int *num1, int *num2));
41void ex_history __ARGS((exarg_T *eap));
42void prepare_viminfo_history __ARGS((int asklen));
43int read_viminfo_history __ARGS((vir_T *virp));
44void finish_viminfo_history __ARGS((void));
45void write_viminfo_history __ARGS((FILE *fp));
46void cmd_pchar __ARGS((int c, int offset));
47int cmd_gchar __ARGS((int offset));
48char_u *script_get __ARGS((exarg_T *eap, char_u *cmd));
49/* vim: set ft=c : */