更改 VS Code 终端正在使用的位置
Change location that VS Code terminal is using
出于某种原因,我的 VS Code 终端位于某个随机文件夹中,每次使用时我都必须使用扩展名来引用我的文件夹。我可以更改任何设置以使终端引用不同的文件夹吗?
如果您打开一个文件夹,终端应该在该文件夹的根目录下打开。所以可能某处配置错误。
但是如果你想指定一个文件夹:
// 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": "",
您可以使用 code -r "Working Directory"
,通过终端更改工作目录。
出于某种原因,我的 VS Code 终端位于某个随机文件夹中,每次使用时我都必须使用扩展名来引用我的文件夹。我可以更改任何设置以使终端引用不同的文件夹吗?
如果您打开一个文件夹,终端应该在该文件夹的根目录下打开。所以可能某处配置错误。
但是如果你想指定一个文件夹:
// 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": "",
您可以使用 code -r "Working Directory"
,通过终端更改工作目录。