Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 1 | /* cmdexpand.c */ |
| 2 | int nextwild(expand_T *xp, int type, int options, int escape); |
| 3 | char_u *ExpandOne(expand_T *xp, char_u *str, char_u *orig, int options, int mode); |
| 4 | void ExpandInit(expand_T *xp); |
| 5 | void ExpandCleanup(expand_T *xp); |
| 6 | int showmatches(expand_T *xp, int wildmenu); |
| 7 | char_u *sm_gettail(char_u *s); |
| 8 | char_u *addstar(char_u *fname, int len, int context); |
| 9 | void set_cmd_context(expand_T *xp, char_u *str, int len, int col, int use_ccline); |
| 10 | 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] | 11 | void globpath(char_u *path, char_u *file, garray_T *ga, int expand_options); |
| 12 | void f_getcompletion(typval_T *argvars, typval_T *rettv); |
| 13 | /* vim: set ft=c : */ |