Skip to content

Instantly share code, notes, and snippets.

@cfvonner
Created November 13, 2017 23:33
Show Gist options
  • Save cfvonner/768152dce8345c3b758b709b400f5023 to your computer and use it in GitHub Desktop.
Save cfvonner/768152dce8345c3b758b709b400f5023 to your computer and use it in GitHub Desktop.
VSCode ShellLauncher Configuration with CommandBox
// 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