fix(cli): clear up tooltip information (#1488)

This commit is contained in:
a-kenji 2022-06-11 15:57:25 +02:00 committed by GitHub
parent 0cd43a5d1b
commit 298ea2d9b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ pub struct CliArgs {
#[clap(long)]
pub max_panes: Option<usize>,
/// Change where zellij looks for layouts and plugins
/// Change where zellij looks for plugins
#[clap(long, parse(from_os_str), overrides_with = "data_dir")]
pub data_dir: Option<PathBuf>,
@ -41,6 +41,7 @@ pub struct CliArgs {
#[clap(subcommand)]
pub command: Option<Command>,
/// Specify emitting additional debug information
#[clap(short, long)]
pub debug: bool,
}