15

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

GollyJer
  • 23,857
  • 16
  • 106
  • 174

1 Answers1

42

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.

GollyJer
  • 23,857
  • 16
  • 106
  • 174
  • 1
    Here is where you can find all the preferences for **Zen Mode**: https://code.visualstudio.com/docs/getstarted/userinterface#_zen-mode – Dave O'Brien Mar 27 '23 at 13:25