mirror of https://github.com/helix-editor/helix
Bump file picker limit
parent
4bec87ad18
commit
08f50310bd
|
@ -85,7 +85,7 @@ pub fn file_picker(root: PathBuf) -> Picker<PathBuf> {
|
|||
Err(_err) => None,
|
||||
});
|
||||
|
||||
const MAX: usize = 2048;
|
||||
const MAX: usize = 8192;
|
||||
|
||||
Picker::new(
|
||||
files.take(MAX).collect(),
|
||||
|
|
Loading…
Reference in New Issue