mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-10 06:34:20 +00:00
Only handle file changes for the current exercise, no jumping back
This commit is contained in:
parent
89c40ba256
commit
4e4b65711a
1 changed files with 1 additions and 5 deletions
|
@ -100,14 +100,10 @@ impl<'a> WatchState<'a> {
|
|||
exercise_ind: usize,
|
||||
stdout: &mut StdoutLock,
|
||||
) -> Result<()> {
|
||||
// Don't skip exercises on file changes to avoid confusion from missing exercises.
|
||||
// Skipping exercises must be explicit in the interactive list.
|
||||
// But going back to an earlier exercise on file change is fine.
|
||||
if self.app_state.current_exercise_ind() < exercise_ind {
|
||||
if self.app_state.current_exercise_ind() != exercise_ind {
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
self.app_state.set_current_exercise_ind(exercise_ind)?;
|
||||
self.run_current_exercise(stdout)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue