comparison src/proto/scriptfile.pro @ 31798:5948cc887603 v9.0.1231

patch 9.0.1231: completion of :runtime does not handle {where} argument Commit: https://github.com/vim/vim/commit/3770f4c9cde7b5fcd10b6fa2e665cd0b69450fb2 Author: zeertzjq <zeertzjq@outlook.com> Date: Sun Jan 22 18:38:51 2023 +0000 patch 9.0.1231: completion of :runtime does not handle {where} argument Problem: Completion of :runtime does not handle {where} argument. Solution: Parse the {where} argument. (closes https://github.com/vim/vim/issues/11863)
author Bram Moolenaar <Bram@vim.org>
date Sun, 22 Jan 2023 19:45:04 +0100
parents 761631155a90
children c5ff7d053fa1
comparison
equal deleted inserted replaced
31797:dd6495176845 31798:5948cc887603
4 estack_T *estack_push_ufunc(ufunc_T *ufunc, long lnum); 4 estack_T *estack_push_ufunc(ufunc_T *ufunc, long lnum);
5 int estack_top_is_ufunc(ufunc_T *ufunc, long lnum); 5 int estack_top_is_ufunc(ufunc_T *ufunc, long lnum);
6 estack_T *estack_pop(void); 6 estack_T *estack_pop(void);
7 char_u *estack_sfile(estack_arg_T which); 7 char_u *estack_sfile(estack_arg_T which);
8 void ex_runtime(exarg_T *eap); 8 void ex_runtime(exarg_T *eap);
9 void set_context_in_runtime_cmd(expand_T *xp, char_u *arg);
10 int expand_runtime_cmd(char_u *pat, int *numMatches, char_u ***matches);
9 int find_script_by_name(char_u *name); 11 int find_script_by_name(char_u *name);
10 int get_new_scriptitem_for_fname(int *error, char_u *fname); 12 int get_new_scriptitem_for_fname(int *error, char_u *fname);
11 int do_in_path(char_u *path, char_u *name, int flags, void (*callback)(char_u *fname, void *ck), void *cookie); 13 int do_in_path(char_u *path, char_u *name, int flags, void (*callback)(char_u *fname, void *ck), void *cookie);
12 int do_in_runtimepath(char_u *name, int flags, void (*callback)(char_u *fname, void *ck), void *cookie); 14 int do_in_runtimepath(char_u *name, int flags, void (*callback)(char_u *fname, void *ck), void *cookie);
13 int source_runtime(char_u *name, int flags); 15 int source_runtime(char_u *name, int flags);