diff options
author | Dmitry Sharshakov | 2021-08-21 18:00:18 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-21 18:00:18 +0000 |
commit | 95ba4ff5bd2d313aa26eeab6d058be4ebe99cf21 (patch) | |
tree | 313faa8f15559bbb0e9546248c357c2167c6e70c | |
parent | f3e47bfee4d70cfc350035f29cc7e20b6ce725e8 (diff) |
Hide stack pointer when continued
-rw-r--r-- | helix-term/src/commands.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 9e34df54..36b85508 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -4344,6 +4344,7 @@ fn dap_continue(cx: &mut Context) { let request = debugger.continue_thread(0); let _ = block_on(request).unwrap(); debugger.is_running = true; + debugger.stack_pointer = None; } } |