Continue command
This commit is contained in:
parent
6709b4242f
commit
66c035fa99
1 changed files with 12 additions and 0 deletions
|
@ -306,6 +306,7 @@ impl Command {
|
||||||
dap_toggle_breakpoint, "Toggle breakpoint",
|
dap_toggle_breakpoint, "Toggle breakpoint",
|
||||||
dap_start, "Start debug session",
|
dap_start, "Start debug session",
|
||||||
dap_run, "Begin program execution",
|
dap_run, "Begin program execution",
|
||||||
|
dap_continue, "Continue program execution",
|
||||||
dap_terminate, "End debug session",
|
dap_terminate, "End debug session",
|
||||||
suspend, "Suspend"
|
suspend, "Suspend"
|
||||||
);
|
);
|
||||||
|
@ -4323,6 +4324,17 @@ fn dap_run(cx: &mut Context) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn dap_continue(cx: &mut Context) {
|
||||||
|
use helix_lsp::block_on;
|
||||||
|
|
||||||
|
if let Some(debugger) = &mut cx.editor.debugger {
|
||||||
|
// assume 0 to continue all threads for now
|
||||||
|
// FIXME: spec conformant behavior here
|
||||||
|
let request = debugger.continue_thread(0);
|
||||||
|
let _ = block_on(request).unwrap();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn dap_terminate(cx: &mut Context) {
|
fn dap_terminate(cx: &mut Context) {
|
||||||
use helix_lsp::block_on;
|
use helix_lsp::block_on;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue