Unnamed repository; edit this file 'description' to name the repository.
Double the UI picker file limit.
Blaž Hrastnik 2021-05-18
parent 5a245b8 · commit 51d1d43
-rw-r--r--helix-term/src/ui/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs
index dc1ec6b6..502099fb 100644
--- a/helix-term/src/ui/mod.rs
+++ b/helix-term/src/ui/mod.rs
@@ -85,7 +85,7 @@ pub fn file_picker(root: PathBuf) -> Picker<PathBuf> {
Err(_err) => None,
});
- const MAX: usize = 1024;
+ const MAX: usize = 2048;
Picker::new(
files.take(MAX).collect(),