GollyJer
GollyJer

Reputation: 26672

How do you show tabs in Zen mode of Visual Studio Code?

In Visual Studio Code how to you keep tabs the tabs from hiding when you enter Zen mode?
Ctrl+K Z

Upvotes: 15

Views: 5486

Answers (1)

GollyJer
GollyJer

Reputation: 26672

Answering this one myself as I've had to do it a few times and Google took too long. 😃

  • Open Visual Studio Code settings: Ctrl+,
  • Tabs should be enabled by default in non-Zen mode.
    "workbench.editor.showTabs": true,
  • Then to show tabs in Zen mode.
    "zenMode.hideTabs": false,

2023 Update
All settings can now be found in the docs.

Upvotes: 43

Related Questions