From 66f58e5ac387c7c773d3bc749babf5876fdc081a Mon Sep 17 00:00:00 2001 From: Velka Date: Sat, 20 Apr 2024 15:44:17 +0200 Subject: [PATCH] fix: added back short args --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index ce2d099..5a64c1b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,11 +9,11 @@ use clap::Parser; #[command(version, about, long_about = None)] struct Args { /// File extensions to include (comma-separated) - #[arg(long, value_delimiter = ',')] + #[arg(long, value_delimiter = ',', short = 'e')] extensions: Vec, /// Exclude files/folders matching the pattern (comma-separated) - #[arg(long, value_delimiter = ',')] + #[arg(long, value_delimiter = ',', short = 'x')] exclude: Vec, }