diff options
Diffstat (limited to 'helix-term/src/lib.rs')
-rw-r--r-- | helix-term/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/lib.rs b/helix-term/src/lib.rs index f0bc9129..2f6ec12b 100644 --- a/helix-term/src/lib.rs +++ b/helix-term/src/lib.rs @@ -42,7 +42,7 @@ fn filter_picker_entry(entry: &DirEntry, root: &Path, dedup_symlinks: bool) -> b .path() .canonicalize() .ok() - .map_or(false, |path| !path.starts_with(&root)); + .map_or(false, |path| !path.starts_with(root)); } true |