Bruno Soares Carvalho
Bruno Soares Carvalho

Reputation: 81

Shift+Tab not working in Jupyter Notebook in VS Code

I'm using Jupyter Notebook.

I'm trying to see a function description like this:

sample mouseover with documentation

When I try the same thing in the Jupyter Notebook, it shows nothing.
I've tried to press Shift + Tab but it's not working.

sample output with no mouseover

Upvotes: 8

Views: 6981

Answers (3)

Babar Baig
Babar Baig

Reputation: 1

I was having the same issue. Then felt it's probably something to do with VS Code. I realized I'd recently reinstalled Python and had not rebooted the IDE since then. Rebooted VS Code and the issue was resolved.

Upvotes: 0

Wulfenlied
Wulfenlied

Reputation: 11

In VS Code, when you hover over a function, it not only displays the function's arguments but also provides information about the types of those arguments. This feature enhances your coding experience by giving you insights into the function's expected input types. As suggested by "Gri Ziz," it makes your life easier by offering contextual information while you're writing code

Upvotes: 0

Gri Ziz
Gri Ziz

Reputation: 101

For MacOS press SHIFT + COMMAND + SPACE within functions' parentheses.

For Windows or Linux press CTRL + SHIFT + SPACE within functions' parentheses

Or simply hover the cursor for a sec

Upvotes: 10

Related Questions