diff options
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r-- | helix-term/src/application.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index f064e866..84824b51 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -217,7 +217,7 @@ impl Application { }) .collect(); - doc.diagnostics = diagnostics; + doc.set_diagnostics(diagnostics); // TODO: we want to process all the events in queue, then render. publishDiagnostic tends to send a whole bunch of events self.render(); } |