Method: RubyText::Window#right

Defined in:
lib/navigation.rb

#right(n = 1) ⇒ Object

Move cursor right



75
76
77
78
# File 'lib/navigation.rb', line 75

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