aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/application.rs
diff options
context:
space:
mode:
authorWojciech Kępka2021-06-06 09:59:32 +0000
committerBlaž Hrastnik2021-06-07 00:11:52 +0000
commit16b1cfa3be2665e78bea6c876d3ced96dbfeb44f (patch)
tree08abe1f4a6a4c2b9286ce226498792e014ac050f /helix-term/src/application.rs
parent2066e866c739fec210df85534b9fbc1de02c155b (diff)
Add diagnostics keybindings
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r--helix-term/src/application.rs2
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();
}