autocomplete-plus-python-jedi icon indicating copy to clipboard operation
autocomplete-plus-python-jedi copied to clipboard

autocomplete on import line fills in class default params

Open adammhaile opened this issue 10 years ago • 0 comments

If I do something like this:

from module import Class

I expect it to end there but hitting enter will autocomplete it to something like this:

from module import Class(param0, param1=2, param2=3, param3=4)

Which I then have to delete. This is obviously desirable if I am making an instance of that class, but not on an import line.

adammhaile avatar Oct 13 '15 17:10 adammhaile