Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can you have VS Code open fullscreen by default?

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

like image 527
yndolok Avatar asked Sep 01 '25 10:09

yndolok


2 Answers

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

like image 177
yndolok Avatar answered Sep 03 '25 23:09

yndolok


The question says "fullscreen" but many users probably mean they want a maximised window that takes up the full screen.

To do this open vscode settings with Ctrl+,

Go to Window then New Window

In New Window Dimensions setting choose Maximised

setting json is

"window.newWindowDimensions": "maximized"
like image 26
Rosco Avatar answered Sep 04 '25 01:09

Rosco