summaryrefslogtreecommitdiffstats
path: root/src/app/impl_self.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/impl_self.rs')
-rw-r--r--src/app/impl_self.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/app/impl_self.rs b/src/app/impl_self.rs
index ce99702..1114d50 100644
--- a/src/app/impl_self.rs
+++ b/src/app/impl_self.rs
@@ -249,10 +249,10 @@ impl App {
"tdown" | "track-down" => "track-down <auto-habit-name> (alias: tdown)",
"q" | "quit" => "quit dijo",
"w" | "write" => "write current state to disk (alias: w)",
- "wq" | "writeandquit" => "write current state to disk and quit dijo (alias: wq)",
"h"|"?" | "help" => "help [<command>|commands|keys] (aliases: h, ?)",
"cmds" | "commands" => "add, add-auto, delete, month-{prev,next}, track-{up,down}, help, quit",
"keys" => "TODO", // TODO (view?)
+ "wq" => "write current state to disk and quit dijo",
_ => "unknown command or help topic.",
}
)
@@ -261,8 +261,7 @@ impl App {
self.message.set_message("help <command>|commands|keys")
}
}
- Command::WriteAndQuit => self.save_state(),
- Command::Quit | Command::Write => self.save_state(),
+ Command::Quit | Command::Write | Command::WriteAndQuit => self.save_state(),
Command::MonthNext => self.sift_forward(),
Command::MonthPrev => self.sift_backward(),
Command::Blank => {}