diff --git a/src/cli/run_cli.rs b/src/cli/run_cli.rs index d3f4ec3..c7771bc 100644 --- a/src/cli/run_cli.rs +++ b/src/cli/run_cli.rs @@ -4,10 +4,10 @@ use cull_gmail::{Config, EolAction, Processor, Result}; #[derive(Debug, Parser)] pub struct RunCli { /// Skip any rules that apply the action `trash` - #[clap(short = 't', long)] + #[clap(short = 't', long, display_order = 1, help_heading = "Skip Action")] skip_trash: bool, /// Skip any rules that apply the action `delete` - #[clap(short = 'd', long)] + #[clap(short = 'd', long, display_order = 2, help_heading = "Skip Action")] skip_delete: bool, }