tenfyzhong/CompleteParameter.vim

python parser bug if the parameters has `()`

tenfyzhong opened this issue · 0 comments

for example:

pexpect.interact(self, escape_character=chr(29),             input_filter=None,
output_filter=None)

It will get the text: pexpect.interact(self, escape_character=chr(29)

expect: pexpect.interact(escape_character, input_filter, output_filter)