VS Code starts debugging in integrated terminal instead of debug console

前端 未结 6 1186
一向
一向 2020-12-02 17:14

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 a

6条回答
  •  盖世英雄少女心
    2020-12-02 18:00

    {
        "name": "Python: Current File",
        "type": "python",
        "request": "launch",
        "program": "${file}",
        "stopOnEntry": false,
        "console": "none"
    },
    

    these are my launch.json settings and it's working with this.

提交回复
热议问题