visual studio code 输出到“调试控制台”而不是“终端”
visual studio code每次debug,默认会显示“终端窗口”,但终端窗口会添加很多附属信息,比如启动的程序、参数等等。
但visual studio code的“调试控制台”就很好,每次只显示本次调试的结果。
经过上网查找及尝试,最终发现了解决办法,在launch.json中对应配置中,添加一行:
"console":"none"
“console”的值选项包括:
选项 | 输出效果 |
---|---|
“none”/“internalConsole” | 只输出到"调试控制台","internalConsole"是新版本vscode的选项 |
“integratedTerminal” | 同时输出到"调试控制台"和软件内置“终端” |
“externalTerminal” | 输出到外部“终端” |
后续
可能讲得不是很清楚,我在此给出示例
在项目的.vscode/launch.json
里设置
{// 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387"version": "0.2.0","configurations": [{"name": "Python: Current File","type": "python","request": "launch","console":"none", // 新的vscode版本换“internalConsole”"stopOnEntry": false,"program": "${file}"},... // 其他配置 ]}
赞 (0)