LSP: Normalize diagnostic file paths

pull/9724/head
Michael Davis 2023-06-17 17:01:36 -05:00 committed by Blaž Hrastnik
parent 8141a4a1ab
commit 928bf80d9a
1 changed files with 1 additions and 1 deletions

View File

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