VS Codeに複数の異なる端末を追加できますか?私は次の3つの端末を追加し、それらすべてで作業することを計画しています:
- Windowsコマンドプロンプト
- パワーシェル
- 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",
上記の3つのコマンドすべてをに追加したい setting.json
また、+
別の端末をクリックすると開くはずで、設定を変更せずにそれらの端末で作業したいと思います。VS Codeで可能かどうか?
& "c:\Program Files\git\bin\bash.exe"