JM1
JM1

Reputation: 1715

Visual Studio Code - How to permanently disable the left side bar?

Using Visual Studio Code version 1.44.0, how do I permanently disable the left side bar? I hit control + B to hide it, but every time I hit F5, it comes back up. How do I make it not come up when I hit F5 to run the code?

Thank you.

Upvotes: 1

Views: 227

Answers (2)

JM1
JM1

Reputation: 1715

Here is a visual and a step-by-step of Mark's answer: Thanks Mark!

  • File > Preferences > Settings > type debug:open > select 'neverOpen' from the drop-down.

enter image description here

Upvotes: 1

Mark
Mark

Reputation: 182641

Setting:

Debug: Open Debug

set it to never. Default is openOnSessionStart

Upvotes: 2

Related Questions