I've been using VS Code for quite some time and just today I started having this strange issue. Previously if I started debugging an program (F5) it would start debugging and show output in the "Debug Console":
But now It starts debugger in the "Terminal" and also outputs to "Debug Console".
Here is my launch.json:
{
"version": "0.2.0",
"configurations": [{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}"
}
]
}
I want output only in the "Debug Console" (previously default behavior). Please help me with setting it back to the way it was.