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