Reputation: 355
I am new with Visual Studio and I have been looking for keyboard shortcuts but I can't find the one that would show me the doc of a function.
Sometimes it shows it automatically but for other functions don't do it and when you start writing it dissapear so you can't read it again in case you need it.
In jupiter notebook you can do that by pressing in a function CONTROL + SHIFT but there is nothing in Visual Studio and I think it's very handy when you are new.
Please, could anyone help me.
Thank you
Upvotes: 2
Views: 200
Reputation: 310907
I'm not so familiar with Python, but I believe the command you need to invoke is Edit.QuickInfo
, to show docs for the symbol under the caret.
In this screenshot you can see it is set to Ctrl+K, I on my machine. It may be different on yours. If you click on Edit.QuickInfo
in the list of commands, it will show you what the shortcut is for your environment.
Upvotes: 2