Could I integrated Python's Help into Visual Studio's Help System?

I am using Visual Studio Community Version to Write and Debug Python codes.
Functions search is a little bit annoying for me.
could I press “F1” key, then VS show functions’s Python online help to me.
How could I do? Is there any plugin available yet?

Maybe this helps:

For a similar problem I just use Visual Studio’s “Tools → External Tools…” feature to define a different command and bind a different key to that in “Tools → Options… → Environment → Keyboard”.

A basic example:

Command: cmd.exe
Arguments: /c start "" "https://docs.python.org/3/search.html?q=$(CurText)"
Use Output windows: Yes

1 Like

Wow! You are my sunshine…