From df6a673ca55d26a768ead23466c7e055a8596d7a Mon Sep 17 00:00:00 2001 From: aycabta Date: Tue, 21 May 2019 08:10:36 +0900 Subject: [PATCH] Fix vertical cursor moving when splitting line --- lib/reline/line_editor.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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