sortSelectedLines method
Sorts the selected lines, or the entire buffer when there is no selection.
Implementation
bool sortSelectedLines({
bool descending = false,
bool caseSensitive = false,
}) {
final changed = _model.sortSelectedLines(
descending: descending,
caseSensitive: caseSensitive,
);
if (changed) {
notifyListeners();
}
return changed;
}