Method: AnsiSys::Screen#write
- Defined in:
- lib/ansisys.rb
#write(char, char_width, col, row, sgr) ⇒ Object
register the char at a specific location on Screen
518 519 520 |
# File 'lib/ansisys.rb', line 518 def write(char, char_width, col, row, sgr) @lines[Integer(row)][Integer(col)] = [char, char_width, sgr.dup] end |