Reputation: 23
I know i can set to use internal terminal for debugging. However, visual studio code always auto switch to debug console when press F5.
I looked thought the config but seem cannot set jump to internal terminal instead.
Upvotes: 2
Views: 2404
Reputation: 156
in .vscode/launch.json in configurations array in config, ensure that you have these configs:
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
Upvotes: 8