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

@@ -62,7 +62,8 @@ def file_name_completions(inference_state, module_context, start_leaf, string,
inference_state,
FileName(inference_state, name[len(must_start_with) - like_name_length:]),
stack=None,
like_name_length=like_name_length
like_name_length=like_name_length,
is_fuzzy=fuzzy,
)