core
core copied to clipboard
[Question] 如何去切换脚本编辑器到debug模式
描述你的问题(Describe you question here) 我要使用命令式启动debug,我发现如果对已经打开的脚本开启调试的话,虽然断步调试变量堆栈正常显示,但是脚本编辑器没有切换成debug模式,鼠标悬浮变量没不能显示值。
具体代码如下:
const pythonDebugConfig = { name: 'Python: 运行 ceshi.py', type: 'python', request: 'launch', program: '${workspaceFolder}/ceshi1.py', console: 'integratedTerminal', cwd: '${workspaceFolder}', justMyCode: false, };
await this.commandService.executeCommand(DEBUG_COMMANDS.START.id, pythonDebugConfig);