英文:
Use "Terminal" instead of "Debug Console" as the I/O feed, when debugging in Visual Studio Code
问题
在VS Code中,是否可以使用终端作为调试过程的输入/输出源,而不是使用调试控制台(例如Node.js)?也许可以在launch.json
中进行特殊配置。
当前行为:
期望的行为:
英文:
Is it possible to debug Go files on VS code using the Terminal as the I/O feed for the debugging process instead of the Debug Console (like with Nodejs for example)? A special config on launch.json
perhaps?
Current behavior:
Desired behavior:
答案1
得分: 2
"console": "integratedTerminal"
或 "console": "externalTerminal"
是在你的 launch.json 配置中的一个相对较新的功能。这个功能是在 Go 扩展 v0.31.0(2022年1月)中添加的。
英文:
"console": "integratedTerminal"
or "console": "externalTerminal"
in your launch.json configuration.
This is a relatively new feature that was added to Go extension v0.31.0 (Jan 2022).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论