aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/reline/line_editor.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/reline/line_editor.rb b/lib/reline/line_editor.rb
index f9e2525ef3..a1541956ea 100644
--- a/lib/reline/line_editor.rb
+++ b/lib/reline/line_editor.rb
@@ -322,16 +322,16 @@ class Reline::LineEditor
back += height
end
if back > @highest_in_all
- scroll_down(back)
- move_cursor_up(back)
+ scroll_down(back - 1)
+ move_cursor_up(back - 1)
elsif back < @highest_in_all
scroll_down(back)
Reline::IOGate.erase_after_cursor
- (@highest_in_all - back).times do
+ (@highest_in_all - back - 1).times do
scroll_down(1)
Reline::IOGate.erase_after_cursor
end
- move_cursor_up(@highest_in_all)
+ move_cursor_up(@highest_in_all - 1)
end
@buffer_of_lines.each_with_index do |line, index|
render_partial(prompt, prompt_width, line, false)