diff src/proto/evalvars.pro @ 23598:a9433f834693 v8.2.2341

patch 8.2.2341: expresison command line completion incomplete after "g:" Commit: https://github.com/vim/vim/commit/1bb4de5302ba038b9c59e845b6d735e87d5681d0 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 13 19:48:46 2021 +0100 patch 8.2.2341: expresison command line completion incomplete after "g:" Problem: Expresison command line completion shows variables but not functions after "g:". (Gary Johnson) Solution: Prefix "g:" when needed to a global function.
author Bram Moolenaar <Bram@vim.org>
date Wed, 13 Jan 2021 20:00:05 +0100
parents d9ae7dd3a0f2
children 4b417b776b95
line wrap: on
line diff
--- a/src/proto/evalvars.pro
+++ b/src/proto/evalvars.pro
@@ -26,6 +26,7 @@ void ex_unletlock(exarg_T *eap, char_u *
 int do_unlet(char_u *name, int forceit);
 void item_lock(typval_T *tv, int deep, int lock, int check_refcount);
 void del_menutrans_vars(void);
+char_u *cat_prefix_varname(int prefix, char_u *name);
 char_u *get_user_var_name(expand_T *xp, int idx);
 char *get_var_special_name(int nr);
 dict_T *get_globvar_dict(void);