A Visual Studio Code extension for opening projects in user-defined consoles.
description: Open current workspace in user-defined console.
key binding: Ctrl/Cmd+Shift+C
description: Open the directory containing active file in user-defined console.
key binding: Ctrl/Cmd+Shift+A
You must configure a console executable to use this extension.
For example:
{
"console.executable": "cmd.exe",
"console.args": "/s /c \"\"C:\\Program Files\\ConEmu\\ConEmu64.exe\" /single /icon code.exe /title \"ConEmu - Visual Studio Code\"\""
}Note: there is some issue with Ctrl+C if you start ConEmu directly with "console.detached": true.
It is recommended to use cmd.exe to start ConEmu.
Path of the console executable.
Arguments in an array or string.
If it's an array, the executable will be execute using spawn, otherwise exec.
Take effects only if console.args is an array (thus spawn is used).
Current working directory for command console.open, defaults to "{dirname}".
MIT License.