cursorGoForward method

void cursorGoForward()

Implementation

void cursorGoForward() {
  _cursorX = min(_cursorX + 1, _rightLimit);
}