summaryrefslogtreecommitdiffstats
path: root/src/proto/evalvars.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-01-13 19:48:46 +0100
committerBram Moolenaar <Bram@vim.org>2021-01-13 19:48:46 +0100
commit1bb4de5302ba038b9c59e845b6d735e87d5681d0 (patch)
tree9b61661df621590824d24222d42fa7601fb87e53 /src/proto/evalvars.pro
parent37487e16da7877129edee8d11b9b7f5c8df312c6 (diff)
patch 8.2.2341: expresison command line completion incomplete after "g:"v8.2.2341
Problem: Expresison command line completion shows variables but not functions after "g:". (Gary Johnson) Solution: Prefix "g:" when needed to a global function.
Diffstat (limited to 'src/proto/evalvars.pro')
-rw-r--r--src/proto/evalvars.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/evalvars.pro b/src/proto/evalvars.pro
index c597ca3720..0861a8866a 100644
--- a/src/proto/evalvars.pro
+++ b/src/proto/evalvars.pro
@@ -26,6 +26,7 @@ void ex_unletlock(exarg_T *eap, char_u *argstart, int deep, int glv_flags, int (
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);