outdentLines method

bool outdentLines({
  1. int width = 2,
})

Outdents the selected lines, or the current line if there is no selection.

Implementation

bool outdentLines({int width = 2}) {
  final changed = _model.outdentLines(width: width);
  if (changed) {
    notifyListeners();
  }
  return changed;
}