improv(find): Default to case-insensitive search

This commit is contained in:
Michael Aaron Murphy 2021-08-18 14:21:23 +02:00
parent 106804ec27
commit 44f1cf3b4e

View file

@ -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())