go.nvim/playground/sampleApp/.vscode/launch.json

32 lines
779 B
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
2022-03-30 04:44:09 +00:00
{
"name": "Launch main",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/main.go"
},
{
"name": "Launch test function",
"type": "go",
"request": "launch",
"mode": "test",
"program": "${workspaceFolder}/pkg",
"args": [
"-test.run",
"FindAllSubStr"
]
},
{
"name": "Test Current File",
"type": "go",
"request": "launch",
"mode": "test",
"program": "./${relativeFileDirname}",
"showLog": true
}
]
2022-03-30 04:44:09 +00:00
}