How can you have VS Code open fullscreen by default?

Viewed 1207

Is there a setting to have VS Code open in fullscreen mode by default?

2 Answers

In settings.json add

  "window.restoreFullscreen": true

There's a setting to "restore fullscreen". When that setting is turned on, VS Code will open in full screen mode if you exit VS Code in full screen mode:

![enter image description here

Open the settings UI (command-, on a mac) -> search restore fullscreen -> check the Window: Restore Fullscreen setting

Related