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 vim/vim#8753)
069f90852f
This commit is contained in:
Sean Dewar
2021-08-13 17:00:16 +01:00
parent b24c377c8a
commit 2ddfd6b999
2 changed files with 6 additions and 1 deletions

View File

@@ -119,7 +119,7 @@ char_u *get_function_name(expand_T *xp, int idx)
intidx = -1;
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);
}