DAP documentation required, and is anybody using dap with Helix? #9269
Replies: 4 comments 2 replies
-
Did you ever find an answer as I'm experiencing the same issue? |
Beta Was this translation helpful? Give feedback.
-
@mabasic any update on what you did? |
Beta Was this translation helpful? Give feedback.
-
I think you might be somewhat confused here. [[language]]
name = "javascript"
[language.debugger]
name = "vscode-js-debug"
transport = "tcp"
command = "node"
args = [ "~/.local/libexec/vscode-js-debug/src/vsDebugServer.js" ]
port-arg = [ "{}" ]
[[language.debugger.templates]]
name = "attach"
request = "attach"
completion = [ "pid" ]
args = { mode = "local", processId = "{0}" }
[[language.debugger.templates]]
name = "source"
request = "launch"
completion = [ { name = "main", completion = "filename", default = "index.js" } ]
args = { program = "{0}" } Note, however, that recent versions of |
Beta Was this translation helpful? Give feedback.
-
Please see this thread #11906 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have just spend an entire day trying to figure out how to use debug with Helix ... still no success.
I am trying to configure https://github.com/microsoft/vscode-js-debug so that i can debug Deno programs.
This is what I have so far:
it returns request 0 timed out when I do
ctrl g l
and then select "source".I have managed to start the dap in a separate terminal and use
:debug-remote 127.0.0.1:8123
and it would connect, but the dap would respond with config unknown or something like that every time in the terminal. I have tried changing everything that I could find. I have tried changing to "tcp", but it complains about incorrect transport...Can somebody help with this?
What are the available options and what do they do and what values can I enter and why. So much unknown.
This is my reference:
Beta Was this translation helpful? Give feedback.
All reactions