garethj
garethj

Reputation: 13

Visual Studio Code UI: Accidentally hid variables section in debug. How to get it back?

I feel a bit silly about this, but I seem to have accidentally hidden the variables section for debug mode in Visual Studio Code, and can't figure out how to get it back.

The debugger is starting ok (using node.js for debuggging a js file), and I can see Watch, Call Stack, and Breakpoints - but no Variables window. Have attached a screenshot to show the layout. screeny of VS Code window

Upvotes: 1

Views: 707

Answers (1)

HaaLeo
HaaLeo

Reputation: 11722

Press Ctrl + P to open the "Go to File..." menu and type in view Variables and press Enter. This will show the variables view again.

Upvotes: 1

Related Questions