From bcab93c94ed7a62f2775c8c3e38196c08331f19b Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Sat, 21 Aug 2021 17:26:51 +0300 Subject: [PATCH] Update editor window when stopped --- helix-term/src/application.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index dad6df2b..0e988a1a 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -200,6 +200,7 @@ impl Application { let (bt, _) = debugger.stack_trace(main.id).await.unwrap(); debugger.stack_pointer = bt.get(0).cloned(); } + self.render(); } _ => {} }