- 31.3k
- 22
- 110
- 134
Actually, VSCodeVisual Studio Code shows you the preview of a file when you open it. If you want to open files in a new tab, just disable the preview with this setting (paste this in the settings.jsonsettings.json file).
"workbench.editor.enablePreview": false,
— youYou can take it one step further and use this setting
"workbench.startupEditor": "newUntitledFile",
— It will open your VSCodeVisual Studio Code editor with a blank new untitled file to quickly get started.
Actually, VSCode shows you the preview of a file when you open it. If you want to open files in a new tab, just disable the preview with this setting (paste this in the settings.json file).
"workbench.editor.enablePreview": false,
— you can take it one step further and use this setting
"workbench.startupEditor": "newUntitledFile",
— It will open your VSCode editor with a blank new untitled file to quickly get started.
Actually, Visual Studio Code shows you the preview of a file when you open it. If you want to open files in a new tab, just disable the preview with this setting (paste this in the settings.json file).
"workbench.editor.enablePreview": false,
You can take it one step further and use this setting
"workbench.startupEditor": "newUntitledFile",
It will open your Visual Studio Code editor with a blank new untitled file to quickly get started.
Actually, VSCode shows you the preview of a file when you open it. If you want to open files in a new tab, just disable the preview with this setting (paste this in the settings.json file).
"workbench.editor.enablePreview": false,
— you can take it one step further and use this setting
"workbench.startupEditor": "newUntitledFile",
— It will open your VSCode editor with a blank new untitled file to quickly get started.