We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e476491 commit 201cc65Copy full SHA for 201cc65
helix-term/src/ui/mod.rs
@@ -517,7 +517,7 @@ pub mod completers {
517
}
518
519
pub fn filename(editor: &Editor, input: &str) -> Vec<Completion> {
520
- filename_with_git_ignore(editor, input, true)
+ filename_with_git_ignore(editor, input, false)
521
522
523
pub fn filename_with_git_ignore(
@@ -568,7 +568,7 @@ pub mod completers {
568
569
570
pub fn directory(editor: &Editor, input: &str) -> Vec<Completion> {
571
- directory_with_git_ignore(editor, input, true)
+ directory_with_git_ignore(editor, input, false)
572
573
574
pub fn directory_with_git_ignore(
0 commit comments