0

Just started with Visual Studio Code. I need to add more workspaces after the original one.

I tried googling the docs but there is no reference.

How do I add more workspaces?

aarffy
  • 231
  • 2
  • 13
  • Possible duplicate of [What is a 'workspace' in VS Code?](https://stackoverflow.com/questions/44629890/what-is-a-workspace-in-vs-code) – Rob Bricheno Nov 04 '18 at 22:04

2 Answers2

1

As AitlioA said, in the same workspace is not possible.

If you want to create more workspaces:

  • Add folder in the same window: File > Add Folder to Workspace
  • Repeat many time as you want.
  • Save your workspace: File > Save Workspace As...

It will save your workspaces including all your folders. Next time, just select

  • File > Open workspace

Check the documentation: Multi root workspaces

georgeos
  • 2,351
  • 2
  • 24
  • 28
0

Do you want to open multiple workspaces in the same window? This isn't possible. See this issue.

AtilioA
  • 419
  • 2
  • 6
  • 19