Skip to content

Commit

Permalink
Pass delimiter to finder
Browse files Browse the repository at this point in the history
  • Loading branch information
dgengtek committed Jun 5, 2021
1 parent d517c4b commit 327f957
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/finder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@ impl Finder for FinderChoice {
command.args(&["--filter", &f]);
}

if let Some(d) = opts.delimiter {
command.args(&["--delimiter", &d]);
}

if let Some(h) = opts.header {
command.args(&["--header", &h]);
}
Expand Down

0 comments on commit 327f957

Please # to comment.