紧随其后的是Microsoft/vscode-go 问题 219,并且仍然打开。
是的 - VS Code 调试器控制台当前不支持将任何输入通过管道传输到标准输入。
仅供参考,您可以告诉代码调试器在启动配置中使用外部控制台:
"externalConsole": true
它有一个可能的解决方法,使用远程调试 + vscode 任务,但这不是微不足道的。
tasks.json
:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "echo",
"type": "shell",
"command": "cd ${fileDirname} && dlv debug --headless --listen=:2345 --log --api-version=2",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
launch.json
:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Connect to server",
"type": "go",
"request": "launch",
"mode": "remote",
"remotePath": "${fileDirname}",
"port": 2345,
"host": "127.0.0.1",
"program": "${fileDirname}",
"env": {},
"args": []
}
]
}
使用快捷键(command/control + shift + B)运行任务,vscode将启动一个新的shell并运行delve服务器。
按 F5 调试 .go 文件。这对我来说可以。