From 4d9b8f3f02dc395cb72f82e70badada84611e709 Mon Sep 17 00:00:00 2001 From: naskya Date: Mon, 1 Jul 2024 00:27:55 +0900 Subject: [PATCH] WIP --- fishctl/src/command/mod.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fishctl/src/command/mod.rs b/fishctl/src/command/mod.rs index b1dc3dd..1c62dd5 100644 --- a/fishctl/src/command/mod.rs +++ b/fishctl/src/command/mod.rs @@ -21,8 +21,10 @@ struct Args { #[command(subcommand)] command: Commands, - /// parent of the config directory (default: current directory) - #[arg(short, long, global = true)] + /// Specify the parent of the config directory, + /// which typically is Firefish local repo directory + /// (default: current directory) + #[arg(short = 'd', long, value_name = "PARENT_OF_CONFIG_DIR", global = true)] firefish_dir: Option, }