Skip to content

Commit

Permalink
Do not resolve symlinks in file browser
Browse files Browse the repository at this point in the history
  • Loading branch information
drybalka committed Oct 4, 2024
1 parent adc72f2 commit 68b252a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helix-term/src/ui/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ pub fn file_picker(root: PathBuf, config: &helix_view::editor::Config) -> FilePi
}

pub fn file_browser(root: PathBuf) -> Result<FilePicker, std::io::Error> {
let root = root.canonicalize()?;
let root = helix_stdx::path::canonicalize(root);
let directory_content = directory_content(&root)?;

let columns = [PickerColumn::new(
Expand Down

0 comments on commit 68b252a

Please sign in to comment.