mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-15 08:38:54 +00:00
22 lines
496 B
JSON
22 lines
496 B
JSON
{
|
|
"terminal.integrated.profiles.windows": {
|
|
"PowerShell": {
|
|
"source": "PowerShell",
|
|
"icon": "terminal-powershell",
|
|
"args": ["${workspaceFolder}/win_cmd.bat"],
|
|
},
|
|
"Command Prompt": {
|
|
"path": [
|
|
"${env:windir}\\Sysnative\\cmd.exe",
|
|
"${env:windir}\\System32\\cmd.exe"
|
|
],
|
|
"icon": "terminal-cmd",
|
|
"args": ["/K ${workspaceFolder}/win_cmd.bat"],
|
|
},
|
|
"Git Bash": {
|
|
"source": "Git Bash",
|
|
"args": ["-c \"source ${workspaceFolder}/tools/onestep.sh\""],
|
|
},
|
|
}
|
|
}
|