michael chan
michael chan

Reputation: 23

how to visual-studio-code auto switch to internal terminal instead of debug console when debugging

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

Answers (1)

IGusev
IGusev

Reputation: 156

in .vscode/launch.json in configurations array in config, ensure that you have these configs:

 "console": "integratedTerminal",
 "internalConsoleOptions": "neverOpen"

Upvotes: 8

Related Questions