change completer default in ui/mod

pull/12729/head
Darshan Kumawat 2025-05-02 00:07:51 +05:30
parent 69b9db2fbb
commit ecf5be9f1b
1 changed files with 2 additions and 2 deletions

View File

@ -473,7 +473,7 @@ pub mod completers {
}
pub fn filename(editor: &Editor, input: &str) -> Vec<Completion> {
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<Completion> {
directory_with_git_ignore(editor, input, true)
directory_with_git_ignore(editor, input, false)
}
pub fn directory_with_git_ignore(