From 95ba4ff5bd2d313aa26eeab6d058be4ebe99cf21 Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Sat, 21 Aug 2021 21:00:18 +0300 Subject: [PATCH] Hide stack pointer when continued --- helix-term/src/commands.rs | 1 + 1 file changed, 1 insertion(+) 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; } }