You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding "python.analysis.supportRestructuredText": true partially fixes the docstrings (as described in #2251)
For local packages, tooltips over parameters are working for Sphinx formatting style:
and for NumPy/SciPy formatting style:
However, with compiled code, which use *.pyi files for the docstrings the hover does not work, here is an example:
Hovering over linspace we see that the "Parameters" have been correctly formatted:
I find these type of features particularly useful. As there is a lot of important information, even in a simple package like np.linspace, or knowing that height should be in centimetre as in my example.
The text was updated successfully, but these errors were encountered:
Adding
"python.analysis.supportRestructuredText": true
partially fixes the docstrings (as described in #2251)For local packages, tooltips over parameters are working for Sphinx formatting style:
and for NumPy/SciPy formatting style:
However, with compiled code, which use
*.pyi
files for the docstrings the hover does not work, here is an example:Hovering over linspace we see that the "Parameters" have been correctly formatted:
I find these type of features particularly useful. As there is a lot of important information, even in a simple package like
np.linspace
, or knowing that height should be in centimetre as in my example.The text was updated successfully, but these errors were encountered: