Skip to content

Instantly share code, notes, and snippets.

@hydrz
Created December 4, 2020 14:57
Show Gist options
  • Save hydrz/b48bf30f06964fe20886b154bf30e851 to your computer and use it in GitHub Desktop.
Save hydrz/b48bf30f06964fe20886b154bf30e851 to your computer and use it in GitHub Desktop.
vscode go attach process
// 先安装 augustocdias.tasks-shell-input 插件
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "attach",
"mode": "local",
"processId": "${input:processId}",
}
],
"inputs": [
{
"id": "processId",
"type": "command",
"command": "shellCommand.execute",
"args": {
"command": "lsof -i :8888 | awk 'NR==2{print $2}'",
"cwd": "${workspaceFolder}",
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment