Rerender following lines when line number increased

This commit is contained in:
aycabta 2019-05-30 14:19:58 +09:00
Родитель 1cf9f79342
Коммит eae953ba9f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -332,7 +332,7 @@ class Reline::LineEditor
end
new_highest_in_this = calculate_height_by_width(@prompt_width + calculate_width(@line.nil? ? '' : @line))
# FIXME: end of logical line sometimes breaks
if @previous_line_index or new_highest_in_this < @highest_in_this
if @previous_line_index or new_highest_in_this != @highest_in_this
if @previous_line_index
new_lines = whole_lines(index: @previous_line_index, line: @line)
else