1
0
forked from VimPlug/jedi

Fix decorator param completion

This commit is contained in:
Dave Halter
2020-06-15 00:34:55 +02:00
parent 364d33119c
commit 1872ad311b
2 changed files with 12 additions and 3 deletions

View File

@@ -65,6 +65,10 @@ any(iterable=)
def foo(xyz):
pass
#? 7 ['xyz=']
@foo(xy)
def x(): pass
#? 7 ['xyz=']
foo(xyz)
# No completion should be possible if it's not a simple name