File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -608,7 +608,7 @@ API *dap-api*
608
608
Lua module: dap
609
609
610
610
611
- continue() *dap.continue()*
611
+ continue({opts} ) *dap.continue()*
612
612
`continue ()` resumes the execution of an application [count] times if a
613
613
debug session is active and a thread was stopped. Threads are usually
614
614
stopped when a breakpoint is hit or an exception occurred.
@@ -623,6 +623,10 @@ continue() *dap.continue()*
623
623
`continue ()` is the main entry-point for users to start debugging an
624
624
application.
625
625
626
+ Parameters:
627
+ {opts} Optional table with:
628
+ - `new: boolean` force starting an additional debug session
629
+
626
630
627
631
run({config} , {opts} ) *dap.run()*
628
632
Looks up a debug adapter entry for the given configuration and runs it.
@@ -640,7 +644,7 @@ run({config}, {opts}) *dap.run()*
640
644
Parameters:
641
645
{config} | dap-configuration | to run
642
646
{opts} Optional table with:
643
- - `new: boolean` to force running an additional debug session
647
+ - `new: boolean` force starting an additional debug session
644
648
645
649
646
650
run_last() *dap.run_last()*
Original file line number Diff line number Diff line change @@ -860,7 +860,7 @@ function M.run_to_cursor()
860
860
end
861
861
862
862
863
- --- @param opts ? table<string , any>
863
+ --- @param opts ? { new ?: boolean }
864
864
function M .continue (opts )
865
865
if not session then
866
866
session = first_stopped_session ()
You can’t perform that action at this time.
0 commit comments