summaryrefslogtreecommitdiff
path: root/src/watch
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-05-14 01:23:58 +0200
committermo8it <mo8it@proton.me>2024-05-14 01:23:58 +0200
commit96a44f3dcf2dd9e2562b757d7840084b45b90b61 (patch)
treebdde15c1611a356af95c6e0605bbc93e7be9b7cc /src/watch
parent0ae66d18607a78c1dc55879cafd70732604e528e (diff)
Make it more clear that only one char is expected
Diffstat (limited to 'src/watch')
-rw-r--r--src/watch/state.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/watch/state.rs b/src/watch/state.rs
index 60b6d5a..abd21fb 100644
--- a/src/watch/state.rs
+++ b/src/watch/state.rs
@@ -96,18 +96,18 @@ impl<'a> WatchState<'a> {
self.writer.write_all(b"\n")?;
if self.manual_run {
- write!(self.writer, "{}un/", 'r'.bold())?;
+ write!(self.writer, "{}:run / ", 'r'.bold())?;
}
if self.done_status != DoneStatus::Pending {
- write!(self.writer, "{}ext/", 'n'.bold())?;
+ write!(self.writer, "{}:next / ", 'n'.bold())?;
}
if !self.show_hint {
- write!(self.writer, "{}int/", 'h'.bold())?;
+ write!(self.writer, "{}:hint / ", 'h'.bold())?;
}
- write!(self.writer, "{}ist/{}uit? ", 'l'.bold(), 'q'.bold())?;
+ write!(self.writer, "{}:list / {}:quit ? ", 'l'.bold(), 'q'.bold())?;
self.writer.flush()
}