1
0
forked from VimPlug/jedi

fix a dynamic search param problem

This commit is contained in:
David Halter
2013-02-14 20:57:55 +04:00
parent cda84dc92a
commit fb0ea354ac

View File

@@ -161,7 +161,7 @@ def search_params(param):
else:
commands = param.get_commands()
offset = 1 if commands[0] in ['*', '**'] else 0
param_name = str(commands[0][offset].name)
param_name = str(commands[offset].name)
# add the listener
listener = ParamListener()