I'm new to Python and I'm trying to use VS Code as IDE, and it's IntelliSense (auto-completion) to improve the development.
But I find that the IntelliSense is not working for object instances in the Editor Tab.
I have the example on the figure below, where I created a figure and tried to access its properties via IntelliSense on the editor tab: the properties are not available, only variables.
What is curious is that: on the Python Interactive Tab, the IntelliSense (autocomplete) works fine, for the same object. This example is in the same figure below.
I've tried to disable the Jedi IntelliSense, but it didn't change anything.
The code used in the image is as follows
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0,10,1000)
y = np.cos(x)
fig,ax = plt.subplots()
ax.plot(x,y)
