mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 11:48:13 +01:00
Move global options to the end of the list in the help message
This commit is contained in:
@@ -14,11 +14,11 @@ pub struct Cli {
|
||||
pub command: Commands,
|
||||
|
||||
/// asciinema server URL
|
||||
#[arg(long, global = true)]
|
||||
#[arg(long, global = true, display_order = 100)]
|
||||
pub server_url: Option<String>,
|
||||
|
||||
/// Quiet mode, i.e. suppress diagnostic messages
|
||||
#[clap(short, long, global = true)]
|
||||
#[clap(short, long, global = true, display_order = 101)]
|
||||
pub quiet: bool,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user