We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc79605 commit 7e611f1Copy full SHA for 7e611f1
src/painting/painter.rs
@@ -226,6 +226,9 @@ impl Painter {
226
227
// Moving the start position of the cursor based on the size of the required lines
228
if self.large_buffer || is_reset() {
229
+ for _ in 0..screen_height - 1 {
230
+ self.stdout.queue(Print(&coerce_crlf("\n")))?;
231
+ }
232
self.prompt_start_row = 0;
233
} else if required_lines >= remaining_lines {
234
let extra = required_lines.saturating_sub(remaining_lines);
0 commit comments