Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/commands/dap.rs')
-rw-r--r--helix-term/src/commands/dap.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/helix-term/src/commands/dap.rs b/helix-term/src/commands/dap.rs
index 32f4ab87..922d0ade 100644
--- a/helix-term/src/commands/dap.rs
+++ b/helix-term/src/commands/dap.rs
@@ -764,10 +764,10 @@ pub fn dap_switch_stack_frame(cx: &mut Context) {
frames,
thread_state,
move |cx, (index, frame), _action| {
- let debugger = debugger!(cx.editor);
- debugger.active_frame = Some(*index);
- jump_to_stack_frame(cx.editor, frame);
- },
+ let debugger = debugger!(cx.editor);
+ debugger.active_frame = Some(*index);
+ jump_to_stack_frame(cx.editor, frame);
+ },
)
.with_preview(move |_editor, (_index, frame)| {
frame.source.as_ref().and_then(|source| {