Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/application.rs')
| -rw-r--r-- | helix-term/src/application.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index c4b62394..8b8f17e0 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -247,7 +247,9 @@ impl Application { } } Some(payload) = self.editor.debugger_events.next() => { + #[cfg(feature = "dap")] let needs_render = self.editor.handle_debugger_message(payload).await; + #[cfg(feature = "dap")] if needs_render { self.render(); } |