我正在使用vscode进行python开发。我有时使用调试运行模式,vscode总是停在第一行,即使没有断点。我附上了这个现象的截图。有点烦人,我想跳过这个。有什么方法可以跳过这个?
我的环境
svgewumm1#
launch.json文件的设置为"stopOnEntry":true。请将其更改为false以防止出现这种情况。此文档可在www.example.com上找到https://code.visualstudio.com/docs/python/debugging#_stoponentry
"stopOnEntry":true
false
owfi6suc2#
有很多这样的人,确保使他们都是假的(停止进入)
hmae6n7t3#
对于我的嵌入式项目,它是"runToMain": false
"runToMain": false
3条答案
按热度按时间svgewumm1#
launch.json文件的设置为
"stopOnEntry":true
。请将其更改为false
以防止出现这种情况。此文档可在www.example.com上找到https://code.visualstudio.com/docs/python/debugging#_stoponentry
owfi6suc2#
有很多这样的人,确保使他们都是假的(停止进入)
hmae6n7t3#
对于我的嵌入式项目,它是
"runToMain": false