1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-06-01 07:46:05 +02:00

LSP: Normalize diagnostic file paths

This commit is contained in:
Michael Davis 2023-06-17 17:01:36 -05:00 committed by Blaž Hrastnik
parent 8141a4a1ab
commit 928bf80d9a

View File

@ -724,7 +724,7 @@ macro_rules! language_server {
}
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;