1
0
forked from VimPlug/jedi

showing function calls works now. jedi is now offically *awesome*!

This commit is contained in:
David Halter
2012-09-15 11:33:00 +02:00
parent 3ac2b89fcf
commit a56bc17f2c
3 changed files with 54 additions and 19 deletions

View File

@@ -16,7 +16,7 @@ class TestRegression(unittest.TestCase):
return functions.get_definition(src, pos[0], pos[1], '')
def complete(self, src, pos):
return functions.complete(src, pos[0], pos[1], '')
return functions.complete(src, pos[0], pos[1], '')[0]
def get_in_function_call(self, src, pos=None):
if pos is None: