blob: 1c4f95439484f2c7f828e5a6abfec1f4c4307dc6 [file] [log] [blame]
Bram Moolenaar66b51422019-08-18 21:44:12 +02001/* cmdexpand.c */
2int nextwild(expand_T *xp, int type, int options, int escape);
3char_u *ExpandOne(expand_T *xp, char_u *str, char_u *orig, int options, int mode);
4void ExpandInit(expand_T *xp);
5void ExpandCleanup(expand_T *xp);
6int showmatches(expand_T *xp, int wildmenu);
7char_u *sm_gettail(char_u *s);
8char_u *addstar(char_u *fname, int len, int context);
9void set_cmd_context(expand_T *xp, char_u *str, int len, int col, int use_ccline);
10int expand_cmdline(expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches);
Bram Moolenaar66b51422019-08-18 21:44:12 +020011void globpath(char_u *path, char_u *file, garray_T *ga, int expand_options);
Bram Moolenaareadee482020-09-04 15:37:31 +020012int wildmenu_translate_key(cmdline_info_T *cclp, int key, expand_T *xp, int did_wild_list);
13int wildmenu_process_key(cmdline_info_T *cclp, int key, expand_T *xp);
14void wildmenu_cleanup(cmdline_info_T *cclp);
Bram Moolenaar66b51422019-08-18 21:44:12 +020015void f_getcompletion(typval_T *argvars, typval_T *rettv);
16/* vim: set ft=c : */