I'm trying to change the default path of the integrated terminal in Visual Studio Code, but I'm not sure how to. I do know how to change it in the windows command prompt, but not in Visual Studio Code. I looked in user settings, but I can't find anything there to change.
The current default path is C:\Users\User_Name
.
I'd like to change it to C:\Project
.
How do I do this in Visual Studio Code?
Thanks for the original answer from Peter. Definitely helped ! It has now slightly changed in more recent versions of VS Code.
terminal cwd screen
You can also set it to a relative path to the open folder with
So if you do menu File → Open Folder... → project, and open the terminal with your keyboard shortcut, it will open to
~/project/example
automatically.It can be a general folder like
src
you would always use, or a specific one (but then it would be best to save it in file.vscode/settings.json
).Short answer
Edit the user preference
"terminal.integrated.cwd": ""
to the path that you want the integrated terminal to open to.Long answer
The same answer, but the long step-by-step version,
In Visual Studio Code go to:
Menu File → Preferences → Settings
Now that you are in the "User Settings", using the "Search Settings" bar across the top of the window paste or type this:
It will list the following as a result:
You will notice that it will not let you type here to change this setting. That is because you can't change the default setting. You instead need to change your personal settings. Here's how...
Click the pencil icon to the left of the this option and then the "Copy to Settings" option that pops-up.
You should have a split screen in which the right side of the screen has the heading
Place your settings here to overwrite the Default Settings.
This is the correct place for you to make changes. You might already have a few personalized settings listed here.When you clicked "Copy to Settings" it automatically added this line for you:
Notice that whichever item is last in this list will not have a trailing comma but any items before it in the list will require one.
FYI: you could have simply typed or copy/pasted this into the personalized settings yourself, but following these steps is the process to learn for changing other preferences as needed.
Now you are able to type to set the path you want to use. Make sure to use
\\
in place of\
and you do not need the trailing\
. For example including this line would always start your terminal in thebaz
directory:To apply the change, simply Save and restart Visual Studio Code.
Try this option in the "Intergrated Terminal" section of Settings.
As others have already explained, you can add a setting to change the default folder for your integrated terminal to start in. This setting also accepts Visual Studio Code variables, so to make a relative path from the root folder of your workspace you can use
${workspaceFolder}
.For example, for your terminal to always start in the subfolder
mystart
, your setting would be:The below option will help you do this.
Menu File → Preferences → Settings.
Add or edit the below setting.
terminal.integrated.shell.windows": ""
From the next terminal it will be reflected.
And add file
.profile
to your default shell, and add the default path to it.More information can be found at Integrated Terminal.