scrollRight method
Scrolls right by the given number of columns.
Implementation
ViewportModel scrollRight(int n) {
if (softWrap) return this;
return setXOffset(xOffset + n);
}
Scrolls right by the given number of columns.
ViewportModel scrollRight(int n) {
if (softWrap) return this;
return setXOffset(xOffset + n);
}