From 6c28ca6436ea23e1bdc45dc3742461fcce0b6d9b Mon Sep 17 00:00:00 2001 From: tinger Date: Fri, 9 Aug 2024 13:55:46 +0200 Subject: [PATCH] cli: op show: remove visible alias for positional arg --- cli/src/commands/operation/show.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/commands/operation/show.rs b/cli/src/commands/operation/show.rs index e6f18e9f0..987567bbf 100644 --- a/cli/src/commands/operation/show.rs +++ b/cli/src/commands/operation/show.rs @@ -25,7 +25,7 @@ use crate::ui::Ui; #[derive(clap::Args, Clone, Debug)] pub struct OperationShowArgs { /// Show repository changes in this operation, compared to its parent(s) - #[arg(visible_alias = "op", default_value = "@")] + #[arg(default_value = "@")] operation: String, /// Don't show the graph, show a flat list of modified changes #[arg(long)]