diff options
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r-- | helix-term/src/application.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 7c954c1e..6f2f824b 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -229,7 +229,6 @@ impl Application { None => return, }; - // TODO: parse should return Result/Option match notification { Notification::PublishDiagnostics(params) => { let path = Some(params.uri.to_file_path().unwrap()); @@ -298,7 +297,6 @@ impl Application { .collect(); 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 } } Notification::ShowMessage(params) => { |