setTabStops method

void setTabStops(
  1. int width
)

Implementation

void setTabStops(int width) {
  if (width < 0 || _term.startsWith('linux')) {
    _caps &= ~_Cap.ht;
    _tabs = null;
    return;
  }
  _caps |= _Cap.ht;
  _tabs = TabStops.defaults(width);
}