1
0
forked from VimPlug/jedi

fix the named param issue in the autocompletion

This commit is contained in:
Dave Halter
2014-04-19 22:57:41 +02:00
parent 34488d1bb6
commit 2b091076c1
4 changed files with 16 additions and 5 deletions

View File

@@ -1,7 +1,8 @@
""" named params:
"""
Named Params:
>>> def a(abc): pass
...
>>> a(abc=3) # <- this stuff
>>> a(abc=3) # <- this stuff (abc)
"""
def a(abc):
@@ -18,4 +19,4 @@ def a(*some_args, **some_kwargs):
a(some_args)
#? 13 []
a(some_kwargs
a(some_kwargs)