Fix crash when cwd is deleted (#7185)

This commit is contained in:
Yomain 2023-07-11 19:51:04 +02:00 committed by GitHub
parent 1adb19464f
commit 8afc0282f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 81 additions and 24 deletions

View file

@ -1033,7 +1033,7 @@ fn goto_impl(
locations: Vec<lsp::Location>,
offset_encoding: OffsetEncoding,
) {
let cwdir = std::env::current_dir().unwrap_or_default();
let cwdir = helix_loader::current_working_dir();
match locations.as_slice() {
[location] => {