1
0
forked from VimPlug/jedi

Completions.complete returns None for fuzzy completions #1409

This commit is contained in:
Dave Halter
2019-12-15 19:56:56 +01:00
parent f91f655d55
commit 41a6591d88
4 changed files with 15 additions and 6 deletions

View File

@@ -45,7 +45,8 @@ def filter_names(inference_state, completion_names, stack, like_name, fuzzy):
inference_state,
name,
stack,
len(like_name)
len(like_name),
is_fuzzy=fuzzy,
)
k = (new.name, new.complete) # key
if k in comp_dct and settings.no_completion_duplicates: