Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 1 | /* cmdexpand.c */ |
Yegappan Lakshmanan | 38b85cb | 2022-02-24 13:28:41 +0000 | [diff] [blame] | 2 | int cmdline_fuzzy_complete(char_u *fuzzystr); |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 3 | int nextwild(expand_T *xp, int type, int options, int escape); |
| 4 | char_u *ExpandOne(expand_T *xp, char_u *str, char_u *orig, int options, int mode); |
| 5 | void ExpandInit(expand_T *xp); |
| 6 | void ExpandCleanup(expand_T *xp); |
Yegappan Lakshmanan | 3908ef5 | 2022-02-08 12:08:07 +0000 | [diff] [blame] | 7 | void cmdline_pum_display(void); |
| 8 | int cmdline_pum_active(void); |
| 9 | void cmdline_pum_remove(void); |
| 10 | void cmdline_pum_cleanup(cmdline_info_T *cclp); |
| 11 | int cmdline_compl_startcol(void); |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 12 | int showmatches(expand_T *xp, int wildmenu); |
| 13 | char_u *sm_gettail(char_u *s); |
| 14 | char_u *addstar(char_u *fname, int len, int context); |
| 15 | void set_cmd_context(expand_T *xp, char_u *str, int len, int col, int use_ccline); |
Shougo Matsushita | 79d599b | 2022-05-07 12:48:29 +0100 | [diff] [blame] | 16 | void set_expand_context(expand_T *xp); |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 17 | int expand_cmdline(expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches); |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 18 | void globpath(char_u *path, char_u *file, garray_T *ga, int expand_options); |
Bram Moolenaar | eadee48 | 2020-09-04 15:37:31 +0200 | [diff] [blame] | 19 | int wildmenu_translate_key(cmdline_info_T *cclp, int key, expand_T *xp, int did_wild_list); |
| 20 | int wildmenu_process_key(cmdline_info_T *cclp, int key, expand_T *xp); |
| 21 | void wildmenu_cleanup(cmdline_info_T *cclp); |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 22 | void f_getcompletion(typval_T *argvars, typval_T *rettv); |
| 23 | /* vim: set ft=c : */ |