From 697587ab04aa4eb4ef7f265f9c88a3ee5179eaf5 Mon Sep 17 00:00:00 2001 From: Alexander Mohr Date: Fri, 1 Aug 2025 22:27:36 +0200 Subject: [PATCH] config: support --config as alternative to --conf --- worf/src/lib/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worf/src/lib/config.rs b/worf/src/lib/config.rs index b4bdfbd..06d3ba5 100644 --- a/worf/src/lib/config.rs +++ b/worf/src/lib/config.rs @@ -379,7 +379,7 @@ pub struct Config { fork: Option, /// Selects a config file to use - #[clap(short = 'c', long = "conf")] + #[clap(short = 'c', long = "conf", alias = "config")] cfg_path: Option, /// Prints the version and then exits