How do I set up a launch.json
entry that can be debugged?
#690
-
Thanks for this plugin, I just set it up today. I'm looking to set up I saw Saving current configurations to launch json · Issue #1051 · mfussenegger/nvim-dap. But how can I modify |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I figured this out through the example https://github.com/crate/crate/blob/c23352e37ec3f17a030a07f40daa8669468e4a45/.vscode/launch.json. I printed So debugging is on by default. I was using |
Beta Was this translation helpful? Give feedback.
I figured this out through the example https://github.com/crate/crate/blob/c23352e37ec3f17a030a07f40daa8669468e4a45/.vscode/launch.json. I printed
config
in https://github.com/mfussenegger/nvim-jdtls/blob/master/lua/jdtls/dap.lua#L97, comparing it to what was printed for mylaunch.json
.So debugging is on by default.
I was using
"args": []
instead of"args": ""
.