LSP: Normalize diagnostic file paths
This commit is contained in:
parent
8141a4a1ab
commit
928bf80d9a
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue