blob: aa791ac9cd78c622c48b56deab8296af7b1627f7 [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));
5char_u *getexmodeline __ARGS((int c, void *dummy, int indent));
6int 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));
12void redrawcmdline __ARGS((void));
13void redrawcmd __ARGS((void));
14void compute_cmdrow __ARGS((void));
15void gotocmdline __ARGS((int clr));
16char_u *ExpandOne __ARGS((expand_T *xp, char_u *str, char_u *orig, int options, int mode));
17void ExpandInit __ARGS((expand_T *xp));
18void ExpandCleanup __ARGS((expand_T *xp));
19void ExpandEscape __ARGS((expand_T *xp, char_u *str, int numfiles, char_u **files, int options));
20void tilde_replace __ARGS((char_u *orig_pat, int num_files, char_u **files));
21char_u *sm_gettail __ARGS((char_u *s));
22char_u *addstar __ARGS((char_u *fname, int len, int context));
23void set_cmd_context __ARGS((expand_T *xp, char_u *str, int len, int col));
24int expand_cmdline __ARGS((expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches));
25int ExpandGeneric __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file, char_u *((*func)(expand_T *, int))));
26char_u *globpath __ARGS((char_u *path, char_u *file));
27int get_histtype __ARGS((char_u *name));
28void add_to_history __ARGS((int histype, char_u *new_entry, int in_map, int sep));
29int get_history_idx __ARGS((int histype));
30char_u *get_cmdline_str __ARGS((void));
31int get_cmdline_pos __ARGS((void));
32int set_cmdline_pos __ARGS((int pos));
33char_u *get_history_entry __ARGS((int histype, int idx));
34int clr_history __ARGS((int histype));
35int del_history_entry __ARGS((int histype, char_u *str));
36int del_history_idx __ARGS((int histype, int idx));
37void remove_key_from_history __ARGS((void));
38int get_list_range __ARGS((char_u **str, int *num1, int *num2));
39void ex_history __ARGS((exarg_T *eap));
40void prepare_viminfo_history __ARGS((int asklen));
41int read_viminfo_history __ARGS((vir_T *virp));
42void finish_viminfo_history __ARGS((void));
43void write_viminfo_history __ARGS((FILE *fp));
44void cmd_pchar __ARGS((int c, int offset));
45int cmd_gchar __ARGS((int offset));
46char_u *script_get __ARGS((exarg_T *eap, char_u *cmd));
47/* vim: set ft=c : */