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