From 6c2acd6e349bac5986d6c1d917507eef57c81e24 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Sun, 9 Sep 2018 08:00:05 -0700 Subject: [PATCH] Fix reference to new setting --- src/Buffer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Buffer.ts b/src/Buffer.ts index d24b8b3b..eae5c837 100644 --- a/src/Buffer.ts +++ b/src/Buffer.ts @@ -126,7 +126,7 @@ export class Buffer implements IBuffer { * Clears the buffer to it's initial state, discarding all previous data. */ public clear(): void { - this.setBufferLineFactory(this._terminal.options.experimentalBufferLineConstructor); + this.setBufferLineFactory(this._terminal.options.experimentalBufferLineImpl); this.ydisp = 0; this.ybase = 0; this.y = 0;