My vscode project has an "app" folder which is the root folder for my workspace.
It is possible to change the title of this workspace?
Use the "File -> Save Workspace As ..." to save it into a file.
Normally, you would only want to use a <name>.code-workspace
file with multi-root projects (that is, projects that include multiple folders), but this is also the only way to rename a workspace.
More information:
P.S. All the credit goes to Henry for pointing me to .code-workspace
files :) Thanks!
Simply edit the .code-workspace file contained in the actual folder (via file explorer) and rename it. That's it!
I haven't yet found a way to change the name of the workspace itself (without changing the filename); but one thing not mentioned in other answers that might be relevant: you can edit the .code-workspace file and add a name
property to set a custom display name for each folder in your workspace:
{
"folders": [
{
"path": "../path/to/folder",
"name": "my custom folder name"
}
],
"settings": {}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With