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

1

15

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

Atrioventricular answered 9/3, 2018 at 14:41 Comment(0)
A
43

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.

Atrioventricular answered 9/3, 2018 at 14:41 Comment(2)
Here is where you can find all the preferences for Zen Mode: code.visualstudio.com/docs/getstarted/userinterface#_zen-modePretermit
Thanks so much, will add that for the changes to work I had to exit and re-enter zen mode.Hilburn

© 2022 - 2024 — McMap. All rights reserved.