From 8a4fbf6daf980b08de83e936c4a2b4bf8beaa2d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Tue, 30 Aug 2022 12:23:49 +0900 Subject: [PATCH] completion: remove_follow links on filename_impl We don't need to follow links since we're only scanning the current directory level (non-recursive). --- helix-term/src/ui/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs index 560e91558..485ee8489 100644 --- a/helix-term/src/ui/mod.rs +++ b/helix-term/src/ui/mod.rs @@ -381,7 +381,7 @@ pub mod completers { } // TODO: we could return an iter/lazy thing so it can fetch as many as it needs. - fn filename_impl(editor: &Editor, input: &str, filter_fn: F) -> Vec + fn filename_impl(_editor: &Editor, input: &str, filter_fn: F) -> Vec where F: Fn(&ignore::DirEntry) -> FileMatch, { @@ -413,7 +413,7 @@ pub mod completers { let mut files: Vec<_> = WalkBuilder::new(&dir) .hidden(false) - .follow_links(editor.config().file_picker.follow_symlinks) + .follow_links(false) // We're scanning over depth 1 .max_depth(Some(1)) .build() .filter_map(|file| {