diff options
| author | mo8it <mo8it@proton.me> | 2024-05-14 01:23:58 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-05-14 01:23:58 +0200 |
| commit | 96a44f3dcf2dd9e2562b757d7840084b45b90b61 (patch) | |
| tree | bdde15c1611a356af95c6e0605bbc93e7be9b7cc /src/watch/state.rs | |
| parent | 0ae66d18607a78c1dc55879cafd70732604e528e (diff) | |
Make it more clear that only one char is expected
Diffstat (limited to 'src/watch/state.rs')
| -rw-r--r-- | src/watch/state.rs | 8 |
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() } |
