summaryrefslogtreecommitdiff
path: root/src/watch/state.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/watch/state.rs')
-rw-r--r--src/watch/state.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/watch/state.rs b/src/watch/state.rs
index 08707a4..751285f 100644
--- a/src/watch/state.rs
+++ b/src/watch/state.rs
@@ -159,8 +159,13 @@ You can keep working on this exercise or jump into the next one by removing the
self.show_prompt()
}
- pub fn handle_invalid_cmd(&mut self) -> io::Result<()> {
- self.writer.write_all(b"Invalid command")?;
+ pub fn handle_invalid_cmd(&mut self, cmd: &str) -> io::Result<()> {
+ self.writer.write_all(b"Invalid command: ")?;
+ self.writer.write_all(cmd.as_bytes())?;
+ if cmd.len() > 1 {
+ self.writer
+ .write_all(b" (confusing input can occur after resizing the terminal)")?;
+ }
self.show_prompt()
}
}