Skip to content

Commit 70f21df

Browse files
committed
change completer default in ui/mod
1 parent 29b3278 commit 70f21df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

helix-term/src/ui/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ pub mod completers {
517517
}
518518

519519
pub fn filename(editor: &Editor, input: &str) -> Vec<Completion> {
520-
filename_with_git_ignore(editor, input, true)
520+
filename_with_git_ignore(editor, input, false)
521521
}
522522

523523
pub fn filename_with_git_ignore(
@@ -568,7 +568,7 @@ pub mod completers {
568568
}
569569

570570
pub fn directory(editor: &Editor, input: &str) -> Vec<Completion> {
571-
directory_with_git_ignore(editor, input, true)
571+
directory_with_git_ignore(editor, input, false)
572572
}
573573

574574
pub fn directory_with_git_ignore(

0 commit comments

Comments
 (0)