我们可以在VS Code中添加多个不同的端子吗?我计划添加以下三个终端并与所有这些终端一起工作:
- Windows命令提示符
- 电源外壳
- 吉特·巴什
我知道我需要在其中添加以下命令 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 Code是否可以?
& "c:\Program Files\git\bin\bash.exe"