Open multiple Projects/Folders in Visual Studio Code

前端 未结 18 1545
误落风尘
误落风尘 2020-12-12 12:23

How do I open multiple projects/folders in a single Visual Studio Code instance, and open multiple files in single view? Does it has any option for future change request?

18条回答
  •  半阙折子戏
    2020-12-12 12:42

    On Windows it's possible to use mklink to create directory symbolic links to the needed folders. Then keep them together in a folder, and VSCode will list the content of these.

        c:\>mklink /D c:\dev\MyWork\scripts c:\ProjA\scripts
        symbolic link created for c:\dev\MyWork\scripts <<===>> c:\ProjA\scripts
    
        c:\>mklink /D c:\dev\MyWork\styles c:\ProjB\styles
        symbolic link created for c:\dev\MyWork\styles <<===>> c:\dev\ProjB\styles
    

    This is very similar to @NeilShen's idea, I guess.

提交回复
热议问题