1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-14 22:30:34 +02:00

Fix displaying the list message in narrow mode

This commit is contained in:
mo8it 2024-08-29 17:06:37 +02:00
parent bfa00ffbdc
commit dbbeb7d4ed

View File

@ -263,14 +263,17 @@ impl<'a> ListState<'a> {
}
writer.write_ascii(b" | <q>uit list")?;
next_ln(stdout)?;
} else {
writer.stdout.queue(SetForegroundColor(Color::Magenta))?;
writer.write_str(&self.message)?;
stdout.queue(ResetColor)?;
next_ln(stdout)?;
}
next_ln(stdout)?;
if self.narrow_term {
next_ln(stdout)?;
}
}
}
stdout.queue(EndSynchronizedUpdate)?.flush()