Replies: 1 comment 5 replies
-
"type" should probably be the name of the adapter and not the language itself DAP config is split into I'm not really sure what the adapter name is (it's set by dap-go plugin) but you can find them in |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was recently having trouble with a remote debug session. The process:
dlv --listen=127.0.0.1:2345 --headless --api-version=2 exec myprog --- [lots of prog arguments]
:DapLoadLaunchJSON
\dc
(which is:DapContinue
) => correctly shows a list with debug options including fromlaunch.json
If however before step (3) I do:
it works.
Obviously I expect that
dap-go
sets up the adapter according to the selectedlaunch.json
entry.How to achieve this?
Beta Was this translation helpful? Give feedback.
All reactions