From ecf5be9f1b2392b9f4094437d8c1d848f9edf6aa Mon Sep 17 00:00:00 2001 From: Darshan Kumawat Date: Fri, 2 May 2025 00:07:51 +0530 Subject: [PATCH] change completer default in ui/mod --- 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 47b046c9d..ff5af314d 100644 --- a/helix-term/src/ui/mod.rs +++ b/helix-term/src/ui/mod.rs @@ -473,7 +473,7 @@ pub mod completers { } pub fn filename(editor: &Editor, input: &str) -> Vec { - filename_with_git_ignore(editor, input, true) + filename_with_git_ignore(editor, input, false) } pub fn filename_with_git_ignore( @@ -524,7 +524,7 @@ pub mod completers { } pub fn directory(editor: &Editor, input: &str) -> Vec { - directory_with_git_ignore(editor, input, true) + directory_with_git_ignore(editor, input, false) } pub fn directory_with_git_ignore(