patch 9.1.1699: Fuzzy completion disabled for 'findfunc' and customlist

Problem:  Fuzzy completion disabled for 'findfunc' and customlist
Solution: Remove those cases from cmdline_fuzzy_completion_supported()
          because it is supported (Maxim Kim).

fixes: #18117
closes: #18122

Signed-off-by: Maxim Kim <habamax@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Maxim Kim
2025-08-27 18:09:14 +02:00
committed by Christian Brabandt
parent b760062897
commit cadba05329
7 changed files with 98 additions and 2 deletions

View File

@ -58,7 +58,6 @@ cmdline_fuzzy_completion_supported(expand_T *xp)
case EXPAND_FILES_IN_PATH:
case EXPAND_FILETYPE:
case EXPAND_FILETYPECMD:
case EXPAND_FINDFUNC:
case EXPAND_HELP:
case EXPAND_KEYMAP:
case EXPAND_OLD_SETTING:
@ -71,7 +70,6 @@ cmdline_fuzzy_completion_supported(expand_T *xp)
case EXPAND_SHELLCMDLINE:
case EXPAND_TAGS:
case EXPAND_TAGS_LISTFILES:
case EXPAND_USER_LIST:
return FALSE;
default: