mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-24 18:36:18 +04:00
Do not resolve symlinks in file browser
This commit is contained in:
parent
adc72f2d87
commit
68b252a5fd
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user