LSP: Normalize diagnostic file paths

pull/9724/head
Michael Davis 1 year ago committed by Blaž Hrastnik
parent 8141a4a1ab
commit 928bf80d9a

@ -724,7 +724,7 @@ impl Application {
}
Notification::PublishDiagnostics(mut params) => {
let path = match params.uri.to_file_path() {
Ok(path) => path,
Ok(path) => helix_stdx::path::normalize(&path),
Err(_) => {
log::error!("Unsupported file URI: {}", params.uri);
return;

Loading…
Cancel
Save