mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 06:44:46 +08:00
added a method 'api_classes.Completion.name_with_signs', because this is important for #280
This commit is contained in:
@@ -93,7 +93,8 @@ def setup_readline(namespace=__main__.__dict__):
|
||||
self.matches.append(path + dot + name)
|
||||
else:
|
||||
completions = interpreter.completions()
|
||||
self.matches = [text + c.complete for c in completions]
|
||||
self.matches = [path + dot + c.name_with_signs
|
||||
for c in completions]
|
||||
try:
|
||||
return self.matches[state]
|
||||
except IndexError:
|
||||
|
||||
Reference in New Issue
Block a user