summaryrefslogtreecommitdiffstats
path: root/src/proto/cmdexpand.pro
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-01-22 18:38:51 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-22 18:38:51 +0000
commit3770f4c9cde7b5fcd10b6fa2e665cd0b69450fb2 (patch)
tree2537444947feb570db10bbf8472aae375fdc7d16 /src/proto/cmdexpand.pro
parentf3da4c8427b1b12d7aaffa307ec085ca97ea9ad9 (diff)
patch 9.0.1231: completion of :runtime does not handle {where} argumentv9.0.1231
Problem: Completion of :runtime does not handle {where} argument. Solution: Parse the {where} argument. (closes #11863)
Diffstat (limited to 'src/proto/cmdexpand.pro')
-rw-r--r--src/proto/cmdexpand.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/cmdexpand.pro b/src/proto/cmdexpand.pro
index 2fb543ab43..1e2b148747 100644
--- a/src/proto/cmdexpand.pro
+++ b/src/proto/cmdexpand.pro
@@ -14,7 +14,7 @@ char_u *addstar(char_u *fname, int len, int context);
void set_expand_context(expand_T *xp);
void set_cmd_context(expand_T *xp, char_u *str, int len, int col, int use_ccline);
int expand_cmdline(expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches);
-void globpath(char_u *path, char_u *file, garray_T *ga, int expand_options);
+void globpath(char_u *path, char_u *file, garray_T *ga, int expand_options, int dirs);
int wildmenu_translate_key(cmdline_info_T *cclp, int key, expand_T *xp, int did_wild_list);
int wildmenu_process_key(cmdline_info_T *cclp, int key, expand_T *xp);
void wildmenu_cleanup(cmdline_info_T *cclp);