cursorCharRight function

bool cursorCharRight(
  1. StateCommandTarget target
)

Move the selection one character to the right.

Implementation

bool cursorCharRight(StateCommandTarget target) => _cursorByChar(target, true);