diff --git a/src/cli.rs b/src/cli.rs index cc924cb..8b54db7 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -215,6 +215,7 @@ fn build_command() -> Command { .arg( Arg::new("style") .long("style") + .short('l') .action(ArgAction::Set) .value_name("TYPE") .value_parser(["auto", "basic", "full", "nocolor", "color", "none"]) @@ -230,6 +231,7 @@ fn build_command() -> Command { .arg( Arg::new("sort") .long("sort") + .short('t') .action(ArgAction::Set) .value_name("METHOD") .value_parser(["auto", "command", "mean-time"]) @@ -304,6 +306,7 @@ fn build_command() -> Command { .arg( Arg::new("show-output") .long("show-output") + .short('d') .action(ArgAction::SetTrue) .conflicts_with("style") .help( @@ -316,6 +319,7 @@ fn build_command() -> Command { .arg( Arg::new("output") .long("output") + .short('O') .conflicts_with("show-output") .action(ArgAction::Set) .value_name("WHERE") @@ -339,6 +343,7 @@ fn build_command() -> Command { .arg( Arg::new("input") .long("input") + .short('I') .action(ArgAction::Set) .num_args(1) .value_name("WHERE")