Fix indentation in ui definition
This commit is contained in:
parent
8e4471cc07
commit
3af6712d8b
1 changed files with 11 additions and 11 deletions
|
@ -27,16 +27,16 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
|
||||||
.required(true))
|
.required(true))
|
||||||
)
|
)
|
||||||
|
|
||||||
.subcommand(SubCommand::with_name("list")
|
.subcommand(SubCommand::with_name("list")
|
||||||
.about("List all tasks")
|
.about("List all tasks")
|
||||||
.version("0.1")
|
.version("0.1")
|
||||||
|
|
||||||
.arg(Arg::with_name("verbose")
|
.arg(Arg::with_name("verbose")
|
||||||
.long("verbose")
|
.long("verbose")
|
||||||
.short("v")
|
.short("v")
|
||||||
.takes_value(false)
|
.takes_value(false)
|
||||||
.required(false)
|
.required(false)
|
||||||
.help("Asks taskwarrior for all the details")
|
.help("Asks taskwarrior for all the details")
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue