* Move caret right by one character. If necessary move to the start of the next line
* @return true if caret was moved else false
*/
protected boolean moveCaretRight(TextLayoutHitInfo currPos){
TextLayoutInfo ntli;
TextHitInfo nthi = currPos.tli.layout.getNextRightHit(currPos.thi);
if(nthi == null){
// Move the caret to the start of the next line the previous line
if(currPos.tli.lineNo >= stext.getNbrLines() - 1)
// Can't goto next line because this is the last line
return false;