class TTYString::CSICode::F

Public Instance Methods

action(rows = 1) click to toggle source
# File lib/tty_string/csi_code_definitions.rb, line 39
def action(rows = 1)
  cursor.up(rows)
  cursor.col = 0
end