Problem
I love VSCode's look, but it's Python autocomplete is not that satisfactory.
For example, when I import numpy
and plotly.graph_objects
, VSCode can't deduce what's in these modules:
VSCode doesn't know the linspace fuction
While PyCharm does a good job with both modules:
PyCharm knows the linspace function
PyCharm lists the members correctly
I remember that VSCode once did as good as PyCharm, but I don't why and how to make VSCode powerful again.
VSCode configurations
Python extension settings:
{
"python.jediEnabled": false, // I tried both true and false
"python.analysis.memory.keepLibraryLocalVariables": true,
"python.analysis.memory.keepLibraryAst": true
}
I waited for the Python extension to fully load and analyze in background. I tried both to enable and disable the Visual Studio IntelliCode extension.