9d0246998d
The `--choose` subcommand runs a chooser to select a recipe to run. The chooser should read lines containing recipe names from standard input, and write one of those names to standard output. The chooser defaults to `fzf`, a popular fuzzy finder, but can be overridden by setting $JUST_CHOOSER or passing `--chooser <CHOOSER>`.
19 lines
222 B
Rust
19 lines
222 B
Rust
#[macro_use]
|
|
mod test;
|
|
|
|
mod common;
|
|
|
|
mod choose;
|
|
mod completions;
|
|
mod dotenv;
|
|
mod edit;
|
|
mod examples;
|
|
mod init;
|
|
mod interrupts;
|
|
mod invocation_directory;
|
|
mod misc;
|
|
mod readme;
|
|
mod search;
|
|
mod shell;
|
|
mod working_directory;
|