wrote help topic for env vars

This commit is contained in:
Valerie Wolfe 2024-03-14 14:24:07 -04:00
parent f7cbf8dbe5
commit 0a17e66b4b

View file

@ -25,6 +25,9 @@ commands:
Use 'remux help <command>' to see detailed help text for each command."),
// COMMAND HELP
Some("a" | "attach")
=>
println!("remux attach
@ -91,6 +94,18 @@ flags:
-n, --nest Create the session inside another session.
-t, --target <dir> Sets the target directory for the new session."),
// 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())
}