core icon indicating copy to clipboard operation
core copied to clipboard

[Question] 如何去切换脚本编辑器到debug模式

Open ZhangXiaoTian0510 opened this issue 5 months ago • 1 comments

描述你的问题(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);

Image

ZhangXiaoTian0510 avatar Jun 11 '25 08:06 ZhangXiaoTian0510