forked from VimPlug/jedi
fix the named param issue in the autocompletion
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user