Home > Mobile >  How to prevent VSCode code runner extension from opening second code terminal when I run it
How to prevent VSCode code runner extension from opening second code terminal when I run it

Time:12-28

Whenever I use code runner to run my python file, it always creates a second code terminal to use, and whenever I delete that terminal, it just creates another one. How can I prevent this? Its pretty annoying, I've tried looking for solutions online but none of them work...

enter image description here

CodePudding user response:

I found that if you just delete all the terminals and run code runner, it solves the problem. Code runner probably doesn't know that there isn't an existing terminal already after you reload VSCode, so it creates another one.

  • Related