Created
November 13, 2017 23:33
-
-
Save cfvonner/768152dce8345c3b758b709b400f5023 to your computer and use it in GitHub Desktop.
VSCode ShellLauncher Configuration with CommandBox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Configure multiple shells | |
"shellLauncher.shells.windows": [ | |
{ | |
"shell": "C:\\Windows\\System32\\cmd.exe", | |
"args": [ | |
"" | |
], | |
"label": "cmd shell" | |
}, | |
{ | |
"shell": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", | |
"args": [ | |
"" | |
], | |
"label": "PowerShell" | |
}, | |
{ | |
"shell": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"args": [ | |
"" | |
], | |
"label": "Git Bash" | |
}, | |
{ | |
"shell": "C:\\Windows\\System32\\cmd.exe", | |
"args": [ | |
" /k C:\\apps\\CommandBox\\box.exe" | |
], | |
"label": "CommandBox" | |
} | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment