We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc0b4e9 commit 95499f1Copy full SHA for 95499f1
2 files changed
src/main.rs
@@ -111,6 +111,7 @@ fn main() -> Result<ExitCode> {
111
};
112
113
watch::watch(&mut app_state, notify_exercise_names)?;
114
+ app_state.close_editor()?;
115
}
116
Some(Command::Run { name }) => {
117
if let Some(name) = name {
src/watch.rs
@@ -172,8 +172,7 @@ pub fn watch(
172
watch_list_loop(app_state, notify_exercise_names)
173
174
175
-const QUIT_MSG: &[u8] = b"
176
-
+const QUIT_MSG: &[u8] = b"q\n
177
We hope you're enjoying learning Rust!
178
If you want to continue working on the exercises at a later point, you can simply run `rustlings` again in this directory.
179
";
0 commit comments