mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 20:37:44 +03:00
Improved file reload error message (#6274)
This commit is contained in:
parent
3a4c3598d1
commit
ad855da12d
1 changed files with 1 additions and 1 deletions
|
@ -776,7 +776,7 @@ impl Document {
|
||||||
let path = self
|
let path = self
|
||||||
.path()
|
.path()
|
||||||
.filter(|path| path.exists())
|
.filter(|path| path.exists())
|
||||||
.ok_or_else(|| anyhow!("can't find file to reload from"))?
|
.ok_or_else(|| anyhow!("can't find file to reload from {:?}", self.display_name()))?
|
||||||
.to_owned();
|
.to_owned();
|
||||||
|
|
||||||
let mut file = std::fs::File::open(&path)?;
|
let mut file = std::fs::File::open(&path)?;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue