-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
Description
- VSCode Version: 1.7.2 - 7ba55c5
- OS Verson: macOS Sierra 10.12.1
- C/C++ for VIsual Studio Code Verison: 0.9.2
When debugging/launching your code, VSC doesn't use your external terminal preference set in settings.json. The same issues was opened under vscode repo and in the discussion, we clarified that the launch.json and the expected behavior is related to the specific debugger rather than the vscode itself.
Steps to Reproduce:
- In your settings.json, set your terminal to a different one. e.g. for OSX, use:
// Customizes which terminal application to run on OS X.
"terminal.external.osxExec": "iTerm.app"
-
In
launch.json, set an action with "externalConsole": true -
Start debugging/running your application
Your application will run in the default Terminal.app
Expected behavior:
The last step should respect your preferences
The Node debugger already deprecated the externalConsole replaced with console. I think the C++ debugger should consider the preferences before launching the external console.
hyacz, romanlab, clankill3r, wangxufire, Andersqqq and 21 more