aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-22 08:16:11 +0000
committerDmitry Sharshakov2021-08-22 08:16:11 +0000
commitd93cd2a2611b3305293274f8fb590a01d4b99584 (patch)
tree968f5649ee3e171b18ff0245207ce059316cc8a7 /helix-term/src
parentdfc70a12f337df57e69e3613896663c2f446df8e (diff)
editor: support stepIn, stepOut, next and pause commands
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/application.rs1
-rw-r--r--helix-term/src/commands.rs68
-rw-r--r--helix-term/src/keymap.rs4
3 files changed, 70 insertions, 3 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 0f0a9ae5..6e3b6e99 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -276,6 +276,7 @@ impl Application {
if let Some(main) = main {
let (bt, _) = debugger.stack_trace(main.id).await.unwrap();
debugger.stack_pointer = bt.get(0).cloned();
+ debugger.stopped_thread = Some(main.id);
}
let scope = match thread_id {
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 1c0084fc..cc45f79a 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -307,6 +307,10 @@ impl Command {
dap_start, "Start debug session",
dap_run, "Begin program execution",
dap_continue, "Continue program execution",
+ dap_pause, "Pause program execution",
+ dap_in, "Step in",
+ dap_out, "Step out",
+ dap_next, "Step to next",
dap_variable_scopes, "List variable scopes",
dap_terminate, "End debug session",
suspend, "Suspend"
@@ -4394,15 +4398,73 @@ fn dap_continue(cx: &mut Context) {
.set_status("Debuggee is already running".to_owned());
return;
}
- // assume 0 to continue all threads for now
- // FIXME: spec conformant behavior here
- let request = debugger.continue_thread(0);
+
+ let request = debugger.continue_thread(debugger.stopped_thread.unwrap());
let _ = block_on(request).unwrap();
debugger.is_running = true;
debugger.stack_pointer = None;
}
}
+fn dap_pause(cx: &mut Context) {
+ use helix_lsp::block_on;
+
+ if let Some(debugger) = &mut cx.editor.debugger {
+ if !debugger.is_running {
+ cx.editor.set_status("Debuggee is not running".to_owned());
+ return;
+ }
+
+ let request = debugger.pause(debugger.stopped_thread.unwrap());
+ let _ = block_on(request).unwrap();
+ }
+}
+
+fn dap_in(cx: &mut Context) {
+ use helix_lsp::block_on;
+
+ if let Some(debugger) = &mut cx.editor.debugger {
+ if debugger.is_running {
+ cx.editor
+ .set_status("Debuggee is already running".to_owned());
+ return;
+ }
+
+ let request = debugger.step_in(debugger.stopped_thread.unwrap());
+ let _ = block_on(request).unwrap();
+ }
+}
+
+fn dap_out(cx: &mut Context) {
+ use helix_lsp::block_on;
+
+ if let Some(debugger) = &mut cx.editor.debugger {
+ if debugger.is_running {
+ cx.editor
+ .set_status("Debuggee is already running".to_owned());
+ return;
+ }
+
+ let request = debugger.step_out(debugger.stopped_thread.unwrap());
+ let _ = block_on(request).unwrap();
+ }
+}
+
+fn dap_next(cx: &mut Context) {
+ use helix_lsp::block_on;
+
+ if let Some(debugger) = &mut cx.editor.debugger {
+ if debugger.is_running {
+ cx.editor
+ .set_status("Debuggee is already running".to_owned());
+ return;
+ }
+
+ let request = debugger.next(debugger.stopped_thread.unwrap());
+ let _ = block_on(request).unwrap();
+ }
+}
+
fn dap_variable_scopes(cx: &mut Context) {
use helix_lsp::block_on;
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index 6082521e..541ac233 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -490,6 +490,10 @@ impl Default for Keymaps {
"b" => dap_toggle_breakpoint,
"r" => dap_run,
"c" => dap_continue,
+ "h" => dap_pause,
+ "j" => dap_in,
+ "k" => dap_out,
+ "l" => dap_next,
"z" => dap_variable_scopes,
"t" => dap_terminate,
},