Using a workspace file in Codespaces? #6843
-
Is there any reason to load a workspace file in a Codespace?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
In short, yes. VS Code workspace files provide a number of advantages including settings, support for triggering .vscode/launch.json or .vscode/tasks.json from across each root, and the ability to more spawn terminals under each sub-root, We do not have a way to automatically jump into one currently, but you'll be notified to open it if a If you want extensions to always be installed, you can use the |
Beta Was this translation helpful? Give feedback.
In short, yes. VS Code workspace files provide a number of advantages including settings, support for triggering .vscode/launch.json or .vscode/tasks.json from across each root, and the ability to more spawn terminals under each sub-root,
We do not have a way to automatically jump into one currently, but you'll be notified to open it if a
.code-workspace
file is in the root of the repository.If you want extensions to always be installed, you can use the
extensions
property in.devcontainer/devcontainer.json
. Extension recommendations are there when you do not want to force people to install something and leave the installation up to personal preference.