removeLast method

bool removeLast()

Removes the last character (ignoring cursor position).

Implementation

bool removeLast() {
  moveCursorToEnd();
  return backspace();
}