joinLines method
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;
}
Joins the current line with the next line, or joins the selected block into a single line.
bool joinLines() {
final changed = _model.joinLines();
if (changed) {
notifyListeners();
}
return changed;
}