module TTY::Cursor

def up(n = nil)

Other tags:
    Api: - public

Parameters:
  • n (Integer) --
def up(n = nil)
  CSI + "#{(n || 1)}A"
end