indentLines method

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

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

Implementation

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