Restore diagnostics.

pull/8/head
Blaž Hrastnik 2021-02-05 17:50:31 +09:00
parent a924ad2885
commit f2c2fa0cad
1 changed files with 6 additions and 7 deletions

View File

@ -133,13 +133,12 @@ impl Application {
Notification::PublishDiagnostics(params) => { Notification::PublishDiagnostics(params) => {
let path = Some(params.uri.to_file_path().unwrap()); let path = Some(params.uri.to_file_path().unwrap());
let view: Option<&mut View> = None; let view = self
// TODO .editor
// let view = self .tree
// .editor .views()
// .views .map(|(view, _key)| view)
// .iter_mut() .find(|view| view.doc.path == path);
// .find(|view| view.doc.path == path);
if let Some(view) = view { if let Some(view) = view {
let doc = view.doc.text().slice(..); let doc = view.doc.text().slice(..);