You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Images to correct, using the generated or provided hald clut.#[bpaf( positional("IMAGES"), non_strict, guard(|v| v.exists(), "No such file or directory"), complete_shell(ShellComp::File{ mask: Some(IMAGE_GLOB)}), some("At least one image is needed to apply"),)]
input:Vec<PathBuf>,
Completions for the input positional always show, even when flag (palette) completions should only be shown:
With a flag parser like so:
https://github.com/ozwaldorf/lutgen-rs/blob/b510e80f0c48d8807a20812b6fc2a9971297d8e4/src/bin.rs#L83-L96
And a positional parser that uses complete shell:
https://github.com/ozwaldorf/lutgen-rs/blob/b510e80f0c48d8807a20812b6fc2a9971297d8e4/src/bin.rs#L537-L545
Completions for the input positional always show, even when flag (palette) completions should only be shown:
The text was updated successfully, but these errors were encountered: