From 00eb7cdd24f75051922958919a1923ed2927a512 Mon Sep 17 00:00:00 2001 From: Niko Marmeladkov Date: Fri, 3 Jul 2026 17:36:31 +0300 Subject: [PATCH] attach: add -f alias for --full --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index db1e4b7..42795c7 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -58,7 +58,7 @@ pub enum Commands { /// Attach to a service's stdin interactively Attach { name: String, - #[arg(long, help = "Send SIGINT to service on Ctrl+C before disconnecting")] + #[arg(short = 'f', long, help = "Send SIGINT to service on Ctrl+C before disconnecting")] full: bool, }, /// Internal: run supervisor for a service