jira-terminal 2.5.0

This is a command line application that can be used as a personal productivity tool for interacting with JIRA
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use clap::{App, Arg, SubCommand};

pub fn subcommand() -> App<'static, 'static> {
    SubCommand::with_name("autocompletion")
        .about("Generate autocompletion script..")
        .arg(
            Arg::with_name("shell")
                .short("s")
                .required(true)
                .long("shell")
                .takes_value(true)
                .long_help("Name of shell to create the autocompletion. Possible values are:   bash, fish, zsh, powershell, elvish"),
        )
}