improv(find): Default to case-insensitive search
This commit is contained in:
parent
106804ec27
commit
44f1cf3b4e
1 changed files with 1 additions and 0 deletions
|
|
@ -198,6 +198,7 @@ impl SearchContext {
|
|||
/// Submits the search query to `fdfind`, and returns its stdout pipe.
|
||||
async fn query(arg: &str) -> io::Result<(Child, ChildStdout)> {
|
||||
let mut child = Command::new("fdfind")
|
||||
.arg("-i")
|
||||
.arg(arg)
|
||||
.stdin(Stdio::null())
|
||||
.stdout(Stdio::piped())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue