From 428948e1208995bacc5dfd86de6e8a41fb7d3238 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Fri, 9 Feb 2024 17:36:49 +0800 Subject: refactor: clean up arguments --- src/commands/cmd_completions.rs | 2 +- src/commands/cmd_list.rs | 2 +- src/commands/cmd_subvolume.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/cmd_completions.rs b/src/commands/cmd_completions.rs index 53cdd643..81ee719f 100644 --- a/src/commands/cmd_completions.rs +++ b/src/commands/cmd_completions.rs @@ -3,7 +3,7 @@ use clap_complete::{generate, Generator, Shell}; use std::io; /// Generate shell completions -#[derive(clap::Parser, Debug)] +#[derive(Parser, Debug)] pub struct Cli { shell: Shell, } diff --git a/src/commands/cmd_list.rs b/src/commands/cmd_list.rs index 63eba7e9..442fdd62 100644 --- a/src/commands/cmd_list.rs +++ b/src/commands/cmd_list.rs @@ -113,7 +113,7 @@ pub struct Cli { mode: Mode, /// Check (fsck) the filesystem first - #[arg(short, long, default_value_t=false)] + #[arg(short, long)] fsck: bool, /// Force color on/off. Default: autodetect tty diff --git a/src/commands/cmd_subvolume.rs b/src/commands/cmd_subvolume.rs index a3176f40..6df8d0fc 100644 --- a/src/commands/cmd_subvolume.rs +++ b/src/commands/cmd_subvolume.rs @@ -25,7 +25,7 @@ enum Subcommands { #[command(allow_missing_positional = true)] Snapshot { /// Make snapshot read only - #[arg(long, short = 'r')] + #[arg(long, short)] read_only: bool, source: Option, dest: PathBuf -- cgit v1.2.3 From 4327e0681b205b52a045005f66541205401cf7b0 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Fri, 9 Feb 2024 17:37:00 +0800 Subject: feat: add aliases for a few subcommands --- src/commands/cmd_subvolume.rs | 6 +++++- src/commands/mod.rs | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/commands/cmd_subvolume.rs b/src/commands/cmd_subvolume.rs index 6df8d0fc..c77eaacd 100644 --- a/src/commands/cmd_subvolume.rs +++ b/src/commands/cmd_subvolume.rs @@ -14,15 +14,19 @@ pub struct Cli { /// Subvolumes-related commands #[derive(Subcommand, Debug)] enum Subcommands { + #[command(visible_aliases = ["new"])] Create { /// Paths targets: Vec }, + + #[command(visible_aliases = ["del"])] Delete { /// Path target: PathBuf }, - #[command(allow_missing_positional = true)] + + #[command(allow_missing_positional = true, visible_aliases = ["snap"])] Snapshot { /// Make snapshot read only #[arg(long, short)] diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 76de7f86..70fef82c 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -18,6 +18,7 @@ enum Subcommands { List(cmd_list::Cli), Mount(cmd_mount::Cli), Completions(cmd_completions::Cli), + #[command(visible_aliases = ["subvol"])] Subvolume(cmd_subvolume::Cli), } -- cgit v1.2.3