bdot
bdot

Reputation: 51

vscode: only open the debug tab if breakpoints are set?

Is this possible?

Often I just want to run some code and not have the debug window open every time. Ideally, I only want the side debug tab to open if I have a breakpoint set. Otherwise its just taking up screen space and I have to close it every time.

Upvotes: 0

Views: 168

Answers (1)

bdot
bdot

Reputation: 51

Ah, didnt look hard enough. Simple setting:

"debug.openDebug": "openOnDebugBreak"

Upvotes: 1

Related Questions