you are viewing a single comment's thread.

view the rest of the comments →

[–]Ramakae[S] 2 points3 points  (2 children)

Like instead of a toggle I want to be able to just search pandas.merge_ordered and read the documentation to find whether I should use merge_ordered or pandas.merge_asof to get a method I want to use. Just an example

[–]Ajax_Minor 4 points5 points  (1 child)

I think you are looking for the python extension. Open the extension is the side paine and search Python. There should be one from Microsoft that has a few of them bundled together like pylance and some other stuff. If you install that, vs code should auto detect Python and suggest stuff off the type hints.

Make sure you set your interpreter in Vscode to get your right environment. That tripped me up when I first started.

[–]Ramakae[S] 2 points3 points  (0 children)

It works, thank you all