mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Fix crash when cwd is deleted (#7185)
This commit is contained in:
parent
1adb19464f
commit
8afc0282f2
11 changed files with 81 additions and 24 deletions
|
@ -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] => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue