summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2021-09-08 00:40:33 +0900
committergit <svn-admin@ruby-lang.org>2021-09-08 01:11:13 +0900
commit95089ddaf486e6ab245aa479ef1d6da30412a8f6 (patch)
tree5515c342a362cc42693b3d8996646ccbed5fad5b
parent6faf653ab0cd966f738b8e1d41e92f816a360959 (diff)
[ruby/reline] Move only one line when render a line and then go to the next line
https://github.com/ruby/reline/commit/8a966cd962
-rw-r--r--lib/reline/line_editor.rb2
-rw-r--r--test/reline/yamatanooroti/test_rendering.rb1
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/reline/line_editor.rb b/lib/reline/line_editor.rb
index fab0134419..21c031d57a 100644
--- a/lib/reline/line_editor.rb
+++ b/lib/reline/line_editor.rb
@@ -1220,7 +1220,7 @@ class Reline::LineEditor
height = render_partial(prompt, prompt_width, line, back, with_control: false)
end
if index < (@buffer_of_lines.size - 1)
- move_cursor_down(height)
+ move_cursor_down(1)
back += height
end
end
diff --git a/test/reline/yamatanooroti/test_rendering.rb b/test/reline/yamatanooroti/test_rendering.rb
index 7a73f07d5d..e93aa1a47d 100644
--- a/test/reline/yamatanooroti/test_rendering.rb
+++ b/test/reline/yamatanooroti/test_rendering.rb
@@ -290,7 +290,6 @@ begin
end
def test_clear_multiline_and_autowrap
- omit # FIXME clear logic is buggy
start_terminal(10, 15, %W{ruby -I#{@pwd}/lib #{@pwd}/test/reline/yamatanooroti/multiline_repl}, startup_message: 'Multiline REPL.')
write("def aaaaaa\n 3\n\C-lend")
close