From b3403ffa3614f21a2be8fdc29177f2817b5f3810 Mon Sep 17 00:00:00 2001 From: Valerie Date: Mon, 10 Jun 2024 12:02:57 -0400 Subject: [PATCH] wrote help topic for env vars --- src/help.rs | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/src/help.rs b/src/help.rs index f3180ac..89efe40 100644 --- a/src/help.rs +++ b/src/help.rs @@ -25,7 +25,10 @@ commands: Use 'remux help ' to see detailed help text for each command."), - Some("a" | "attach") + +// COMMAND HELP + + Some("a" | "attach") => println!("remux attach Attach to an existing session. @@ -114,7 +117,19 @@ args: flags: -r, --read-only Attach the target session as read-only."), - // not found + +// TOPIC HELP + + Some("env" | "vars") + => +println!("remux environment variables + +REMUX_ATTACH_SYMBOL + Changes the symbol displayed for attached sessions displayed + by the 'list' command. + Default: '*'"), + + // not found _ => error::no_help(topic.unwrap()) } }