From: Bram Moolenaar Date: Fri, 13 Aug 2021 15:48:25 +0000 (+0200) Subject: patch 8.2.3337: completing "call g:" returns entries with just "g:" X-Git-Tag: v8.2.3337 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=069f90852f1444cac50491c10dfbd339a3f9e0c8;p=vim patch 8.2.3337: completing "call g:" returns entries with just "g:" Problem: Completing "call g:" returns entries with just "g:". (Naohiro Ono) Solution: Skip empty strings returned by get_user_func_name(). (closes #8753) --- diff --git a/src/evalfunc.c b/src/evalfunc.c index b90c6d760..2b50798f4 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -2304,7 +2304,7 @@ get_function_name(expand_T *xp, int idx) if (intidx < 0) { name = get_user_func_name(xp, idx); - if (name != NULL) + if (name != NULL && *name != NUL) { if (*name != '<' && STRNCMP("g:", xp->xp_pattern, 2) == 0) return cat_prefix_varname('g', name); diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim index 90afe4516..3c5513b88 100644 --- a/src/testdir/test_cmdline.vim +++ b/src/testdir/test_cmdline.vim @@ -657,6 +657,11 @@ func Test_cmdline_complete_user_func() " g: prefix also works call feedkeys(":echo g:Test_cmdline_complete_user_f\\\"\", 'tx') call assert_match('"echo g:Test_cmdline_complete_user_func', @:) + + " using g: prefix does not result in just "g:" matches from a lambda + let Fx = { a -> a } + call feedkeys(":echo g:\\\"\", 'tx') + call assert_match('"echo g:[A-Z]', @:) endfunc func Test_cmdline_complete_user_names() diff --git a/src/version.c b/src/version.c index a31b4941a..64137dbd0 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3337, /**/ 3336, /**/