1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 21:32:13 +03:00

clarify the purpose of wezterm start in the --help output

This makes it a bit more understandable/discoverable.

refs: #1478
This commit is contained in:
Wez Furlong 2022-01-01 12:43:57 -07:00
parent 8251e04c63
commit ea7030ae11
2 changed files with 8 additions and 2 deletions

View File

@ -85,7 +85,10 @@ struct Opt {
#[derive(Debug, StructOpt, Clone)]
enum SubCommand {
#[structopt(name = "start", about = "Start a front-end")]
#[structopt(
name = "start",
about = "Start the GUI, optionally running an alternative program"
)]
Start(StartCommand),
#[structopt(name = "ssh", about = "Establish an ssh session")]

View File

@ -52,7 +52,10 @@ struct Opt {
#[derive(Debug, StructOpt, Clone)]
enum SubCommand {
#[structopt(name = "start", about = "Start a front-end")]
#[structopt(
name = "start",
about = "Start the GUI, optionally running an alternative program"
)]
Start(StartCommand),
#[structopt(name = "ssh", about = "Establish an ssh session")]