diff options
author | Dmitry Sharshakov | 2021-08-21 14:26:51 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-21 14:26:51 +0000 |
commit | bcab93c94ed7a62f2775c8c3e38196c08331f19b (patch) | |
tree | 9fb6530e9cb8f66a5e5d50b1e066935e5c7c7922 /helix-term/src | |
parent | a938f5a87a2b67dd8667337cd569cc6627d0f666 (diff) |
Update editor window when stopped
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/application.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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(); } _ => {} } |