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