Method: Cursor#move=

Defined in:
lib/drydock/console.rb

#move=(*args) ⇒ Object



160
161
162
163
# File 'lib/drydock/console.rb', line 160

def move=(*args)
  x,y = *args.flatten
  tput(:cup, y, x) # "tput cup" takes y before x
end