Skip to content

Commit

Permalink
[ruby/reline] Support for change in Windows-specific behavior at eol
Browse files Browse the repository at this point in the history
The behavior of automatically moving the cursor to the next line when
displaying a char at the eol on Windows suddenly disappeared.

ruby/reline@cad4de6ee8
  • Loading branch information
aycabta committed Jan 17, 2021
1 parent f3156e4 commit 05df7e0
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions lib/reline/line_editor.rb
Expand Up @@ -676,17 +676,13 @@ def just_move_cursor
Reline::IOGate.move_cursor_column(0)
if line.nil?
if calculate_width(visual_lines[index - 1], true) == Reline::IOGate.get_screen_size.last
# reaches the end of line
if Reline::IOGate.win?
# A newline is automatically inserted if a character is rendered at
# eol on command prompt.
else
# When the cursor is at the end of the line and erases characters
# after the cursor, some terminals delete the character at the
# cursor position.
move_cursor_down(1)
Reline::IOGate.move_cursor_column(0)
end
# Reaches the end of line.
#
# When the cursor is at the end of the line and erases characters
# after the cursor, some terminals delete the character at the
# cursor position.
move_cursor_down(1)
Reline::IOGate.move_cursor_column(0)
else
Reline::IOGate.erase_after_cursor
move_cursor_down(1)
Expand All @@ -695,10 +691,6 @@ def just_move_cursor
next
end
@output.write line
if Reline::IOGate.win? and calculate_width(line, true) == Reline::IOGate.get_screen_size.last
# A newline is automatically inserted if a character is rendered at eol on command prompt.
@rest_height -= 1 if @rest_height > 0
end
@output.flush
if @first_prompt
@first_prompt = false
Expand Down

0 comments on commit 05df7e0

Please sign in to comment.