Is there a way to enable "Just My Code" on VSCode when I'm debugging a Go app?
Asked
Active
Viewed 261 times
1 Answers
0
Have you tried adding a config in your launch.json
?
"configurations": [
{
.... # existing config
},
{
"name": "Debug Go App",
"type": "go",
"request": "launch",
"justMyCode": true,
}
]
Refs:

rishimaharaj
- 1,644
- 2
- 19
- 34
-
1yes, I tried it, it doesn't work... and by the way, "True" is the default value – Leonardo May 19 '21 at 15:25