mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
parent
b30be9f222
commit
c63d98b401
1 changed files with 3 additions and 1 deletions
|
@ -359,7 +359,9 @@ module IRB
|
|||
formatter.width = 40
|
||||
str = doc.accept(formatter)
|
||||
|
||||
[Reline::CursorPos.new(cursor_pos_to_render.x + 40, cursor_pos_to_render.y + pointer), str.split("\n"), nil, '49']
|
||||
x = cursor_pos_to_render.x + 40
|
||||
y = cursor_pos_to_render.y + pointer - dialog.scroll_top
|
||||
DialogRenderInfo.new(pos: Reline::CursorPos.new(x, y), contents: str.split("\n"), bg_color: '49')
|
||||
}
|
||||
|
||||
# Reads the next line from this input method.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue