wrote help topic for env vars

This commit is contained in:
Valerie Wolfe 2024-06-10 12:02:57 -04:00
parent a07ae193b5
commit b3403ffa36

View file

@ -25,6 +25,9 @@ commands:
Use 'remux help <command>' to see detailed help text for each command."), Use 'remux help <command>' to see detailed help text for each command."),
// COMMAND HELP
Some("a" | "attach") Some("a" | "attach")
=> =>
println!("remux attach println!("remux attach
@ -114,6 +117,18 @@ args:
flags: flags:
-r, --read-only Attach the target session as read-only."), -r, --read-only Attach the target session as read-only."),
// 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 // not found
_ => error::no_help(topic.unwrap()) _ => error::no_help(topic.unwrap())
} }