mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Canonicalize the path on open to avoid duplicates.
This commit is contained in:
parent
7c915dc065
commit
418ee17b86
1 changed files with 2 additions and 0 deletions
|
@ -119,6 +119,8 @@ impl Editor {
|
|||
}
|
||||
|
||||
pub fn open(&mut self, path: PathBuf, action: Action) -> Result<DocumentId, Error> {
|
||||
let path = std::fs::canonicalize(path)?;
|
||||
|
||||
let id = self
|
||||
.documents()
|
||||
.find(|doc| doc.path() == Some(&path))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue