enable autoPadding by default. see #114.

This commit is contained in:
Christopher Jeffrey 2015-03-31 05:11:50 -07:00
parent 51c3d88a69
commit 4419794991

View File

@ -282,7 +282,7 @@ function Screen(options) {
Node.call(this, options);
this.autoPadding = options.autoPadding;
this.autoPadding = options.autoPadding !== false;
this.tabc = Array((options.tabSize || 4) + 1).join(' ');
this.ignoreLocked = options.ignoreLocked || [];