summaryrefslogtreecommitdiffstats
path: root/bin/domain/imag-todo/src/ui.rs
diff options
context:
space:
mode:
Diffstat (limited to 'bin/domain/imag-todo/src/ui.rs')
-rw-r--r--bin/domain/imag-todo/src/ui.rs11
1 files changed, 9 insertions, 2 deletions
diff --git a/bin/domain/imag-todo/src/ui.rs b/bin/domain/imag-todo/src/ui.rs
index 7d0affd5..1172bb60 100644
--- a/bin/domain/imag-todo/src/ui.rs
+++ b/bin/domain/imag-todo/src/ui.rs
@@ -116,7 +116,7 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
.short("H")
.takes_value(false)
.required(false)
- .help("Print also hidden todos")
+ .help("Print hidden todos")
)
.arg(Arg::with_name("list-done")
@@ -124,7 +124,14 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
.short("D")
.takes_value(false)
.required(false)
- .help("Print also done todos")
+ .help("Print done todos")
+ )
+
+ .arg(Arg::with_name("list-deleted")
+ .long("deleted")
+ .takes_value(false)
+ .required(false)
+ .help("Print deleted todos")
)
.arg(Arg::with_name("list-nopending")