Command to run attach(). #386
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You could call Another option is to use |
Beta Was this translation helpful? Give feedback.
-
Thanks to your answer I manage to get this: |
Beta Was this translation helpful? Give feedback.
You could call
dap.run()
directly if you want to skip the configurations prompt. E.g.dap.run(dap.configurations[vim.bo.filetype][3])
if you know the configuration entry you want is on position 3.Another option is to use
dap.continue()
the first time and then for sub-sequent debug sessions usedap.run_last()
to skip the prompt - it will immediately re-use the last configuration.