Skip to content

Commit 930c50c

Browse files
authored
feat(find): let fdfind use --full-path search to include directories (#161)
1 parent a12c131 commit 930c50c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

plugins/src/find/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ async fn query(arg: &str) -> io::Result<(Child, ChildStdout)> {
223223
let spawn = |cmd: &str| -> io::Result<Child> {
224224
Command::new(cmd)
225225
.arg("-i")
226+
.arg("--full-path")
226227
.arg(arg)
227228
.stdin(Stdio::null())
228229
.stdout(Stdio::piped())

0 commit comments

Comments
 (0)