最佳答案
我们可以在 VS 代码中添加多个不同的终端吗?我计划添加以下三个终端,并与所有这些工作:
- 命令提示符
- PowerShell
- Git Bash
我知道我需要在 Preferences => Setting
中添加以下命令
// // 64-bit cmd if available, otherwise 32-bit
"terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\cmd.exe",
// // 64-bit PowerShell if available, otherwise 32-bit
"terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\WindowsPowerShell\\v1.0\\powershell.exe",
// // Git Bash
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
我想在 setting.json
中添加上述三个命令
当我点击 +
时,不同的终端应该打开,我想在不改变首选项的情况下使用这些终端。
是否可能在 VS 代码或不?