From 86d390032be3afc8ea5306962fb51ea723890cf3 Mon Sep 17 00:00:00 2001 From: josh rotenberg Date: Sun, 4 Jul 2021 08:15:51 -0700 Subject: [PATCH] drop short flags --- src/cmd/init.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cmd/init.rs b/src/cmd/init.rs index b7f9f4d6..68a1145b 100644 --- a/src/cmd/init.rs +++ b/src/cmd/init.rs @@ -20,7 +20,6 @@ pub fn make_subcommand<'a, 'b>() -> App<'a, 'b> { .arg_from_usage("--force 'Skips confirmation prompts'") .arg( Arg::with_name("title") - .short("t") .long("title") .takes_value(true) .help("Sets the book title") @@ -28,7 +27,6 @@ pub fn make_subcommand<'a, 'b>() -> App<'a, 'b> { ) .arg( Arg::with_name("gitignore") - .short("g") .long("gitignore") .help("Creates a .gitignore"), )