Frequently I will type and accept auto-completions when importing modules and expect something like this
fro[tab]
v
from module_na[tab]
v
from module_name imp[tab]
v
from module_name import attr_func_na[tab]
v
from module_name import attr_func_name
Above is very natural feeling if intellisense adds a space when it makes sense after import and from.
But what ends up happening in vsocde-python
fro[tab]
v
frommodule_ #oops have to backspace and manually add space
v
from module_[tab]
I realize some people have the muscle memory of typing space after completing from and import and some do not. This might be better off as a toggle-able setting.
Frequently I will type and accept auto-completions when importing modules and expect something like this
Above is very natural feeling if intellisense adds a space when it makes sense after import and from.
But what ends up happening in vsocde-python
I realize some people have the muscle memory of typing space after completing from and import and some do not. This might be better off as a toggle-able setting.