blob: 924b0b4529ade5f698fdd0bbb3463e60bdd754cb [file] [log] [blame]
Bram Moolenaar66b51422019-08-18 21:44:12 +02001/* cmdexpand.c */
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00002int cmdline_fuzzy_complete(char_u *fuzzystr);
Bram Moolenaar66b51422019-08-18 21:44:12 +02003int nextwild(expand_T *xp, int type, int options, int escape);
4char_u *ExpandOne(expand_T *xp, char_u *str, char_u *orig, int options, int mode);
5void ExpandInit(expand_T *xp);
6void ExpandCleanup(expand_T *xp);
Yegappan Lakshmanan3908ef52022-02-08 12:08:07 +00007void cmdline_pum_display(void);
8int cmdline_pum_active(void);
9void cmdline_pum_remove(void);
10void cmdline_pum_cleanup(cmdline_info_T *cclp);
11int cmdline_compl_startcol(void);
Bram Moolenaar66b51422019-08-18 21:44:12 +020012int showmatches(expand_T *xp, int wildmenu);
13char_u *sm_gettail(char_u *s);
14char_u *addstar(char_u *fname, int len, int context);
15void set_cmd_context(expand_T *xp, char_u *str, int len, int col, int use_ccline);
Shougo Matsushita79d599b2022-05-07 12:48:29 +010016void set_expand_context(expand_T *xp);
Bram Moolenaar66b51422019-08-18 21:44:12 +020017int expand_cmdline(expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches);
Bram Moolenaar66b51422019-08-18 21:44:12 +020018void globpath(char_u *path, char_u *file, garray_T *ga, int expand_options);
Bram Moolenaareadee482020-09-04 15:37:31 +020019int wildmenu_translate_key(cmdline_info_T *cclp, int key, expand_T *xp, int did_wild_list);
20int wildmenu_process_key(cmdline_info_T *cclp, int key, expand_T *xp);
21void wildmenu_cleanup(cmdline_info_T *cclp);
Bram Moolenaar66b51422019-08-18 21:44:12 +020022void f_getcompletion(typval_T *argvars, typval_T *rettv);
23/* vim: set ft=c : */