autocomplete-plus-python-jedi
autocomplete-plus-python-jedi copied to clipboard
Erroneous autocomplete popups
When I type a string key for a dictionary, I get a popup with builtin functions:
foo = {
'bar': <- popup happens here
When I enter the value as a key, then a comma, it happens again.
This occurence is particularly intrusive, as it means that enter autocompletes to the abs() function rather than going to the next line.
Yeah, Jedi is completing to basically any valid function / symbol (builtin or not) at some points. I filed an issue regarding this with Jedi, but I think I'll just build a workaround. The only thing is: how to determine reliably if this now is a "here's all symbols"-autocompletion?