joinLines method

bool joinLines()

Joins the current line with the next line, or joins the selected block into a single line.

Implementation

bool joinLines() {
  final changed = _model.joinLines();
  if (changed) {
    notifyListeners();
  }
  return changed;
}