summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/reline/line_editor.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/reline/line_editor.rb b/lib/reline/line_editor.rb
index a611a4d4f0..9df263aba1 100644
--- a/lib/reline/line_editor.rb
+++ b/lib/reline/line_editor.rb
@@ -281,9 +281,10 @@ class Reline::LineEditor
}
diff = all_height - @highest_in_all
if diff > 0
+ move_cursor_down(@highest_in_all - @first_line_started_from - @started_from - 1)
@highest_in_all = all_height
scroll_down(diff)
- move_cursor_up(@first_line_started_from + @started_from + diff)
+ move_cursor_up(@highest_in_all - 1)
back = 0
@buffer_of_lines.each_with_index do |line, index|
line = @line if index == @previous_line_index