Reputation: 1
can anyone help me out, how to set up Visual Studio Code to open every time, new session.
thanks Nancy
Upvotes: 0
Views: 870
Reputation: 2605
You can launch VS Code from the command line to quickly open a file, folder, or project. Typically, you open VS Code within the context of a folder. To do this, from an open terminal or command prompt, navigate to your project folder and type code . -n
or code . --new-window
Upvotes: 2