Fix OpenPathPrompt locally with tilde (#17027)
Release Notes: - Fixed a panic opening a file in ~/ with `use_system_prompts: false`
This commit is contained in:
parent
9beb4d4380
commit
f19d0f0b98
2 changed files with 14 additions and 1 deletions
|
@ -236,7 +236,12 @@ impl PickerDelegate for OpenPathDelegate {
|
|||
let Some(candidate) = directory_state.match_candidates.get(*m) else {
|
||||
return;
|
||||
};
|
||||
let result = Path::new(&directory_state.path).join(&candidate.string);
|
||||
let result = Path::new(
|
||||
self.lister
|
||||
.resolve_tilde(&directory_state.path, cx)
|
||||
.as_ref(),
|
||||
)
|
||||
.join(&candidate.string);
|
||||
if let Some(tx) = self.tx.take() {
|
||||
tx.send(Some(vec![result])).ok();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue