Method: RubyText::Window#down

Defined in:
lib/navigation.rb

#down(n = 1) ⇒ Object

Move cursor down



61
62
63
64
# File 'lib/navigation.rb', line 61

def down(n=1)
  r, c = rc
  go r+n, c
end