forked from VimPlug/jedi
temporary commit: function behaviour changes
This commit is contained in:
@@ -154,7 +154,7 @@ def complete(source, row, column, source_path):
|
||||
for s in scopes:
|
||||
# TODO is this reall the right way? just ignore the functions? \
|
||||
# do the magic functions first? and then recheck here?
|
||||
if not isinstance(s, parsing.Function):
|
||||
if not isinstance(s, evaluate.Function):
|
||||
completions += s.get_defined_names()
|
||||
|
||||
completions = [c for c in completions
|
||||
|
||||
Reference in New Issue
Block a user