1
0
forked from VimPlug/jedi

Comprehensions are also possible arguments. Fixes 1146

This commit is contained in:
Dave Halter
2018-07-01 03:33:24 +02:00
parent a79a1fbef5
commit 8ffdf6746f
2 changed files with 15 additions and 3 deletions

View File

@@ -166,7 +166,8 @@ def _get_index_and_key(nodes, position):
if nodes_before:
last = nodes_before[-1]
if last.type == 'argument' and last.children[1].end_pos <= position:
if last.type == 'argument' and last.children[1] == '=' \
and last.children[1].end_pos <= position:
# Checked if the argument
key_str = last.children[0].value
elif last == '=':