Do not resolve symlinks in file browser

pull/11285/head
Denys Rybalka 2 months ago
parent adc72f2d87
commit 68b252a5fd
No known key found for this signature in database
GPG Key ID: 1F6284E97DB46ED1

@ -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> { 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 directory_content = directory_content(&root)?;
let columns = [PickerColumn::new( let columns = [PickerColumn::new(

Loading…
Cancel
Save