是否可以在Visual Studio Code中更改新的集成终端窗口的工作目录?
我已经在Code中打开了文件夹/path/to/project
,因此当我打开一个新的终端窗口时,它将在该文件夹中启动。我希望在/path/to/project/app
中打开终端,这样就不必每次都 cd 到该文件夹。是否可以在settings.json
中进行配置?
答案 0 :(得分:0)
事实证明,在https://code.visualstudio.com/docs/getstarted/settings的文档中很容易找到这一点。
控制它的设置是
// An explicit start path where the terminal will be launched, this is used
as the current working directory (cwd) for the shell process. This may be
particularly useful in workspace settings if the root directory is not a convenient cwd.
"terminal.integrated.cwd": "",
可以将其添加到settings.json
文件夹中的.vscode
中。支持绝对路径和相对路径,所以
"terminal.integrated.cwd": "app"
和
"terminal.integrated.cwd": "/path/to/project/app"
都可以工作。