diff options
author | Wojciech Kępka | 2021-06-06 09:59:32 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-07 00:11:52 +0000 |
commit | 16b1cfa3be2665e78bea6c876d3ced96dbfeb44f (patch) | |
tree | 08abe1f4a6a4c2b9286ce226498792e014ac050f /helix-term/src/application.rs | |
parent | 2066e866c739fec210df85534b9fbc1de02c155b (diff) |
Add diagnostics keybindings
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(); } |