Merge pull request #1106 from EmbeddedEnterprises/v3

Fix deleteChars not updating the view
This commit is contained in:
Daniel Imms
2017-11-06 10:22:43 -08:00
committed by GitHub
+1
View File
@@ -497,6 +497,7 @@ export class InputHandler implements IInputHandler {
this._terminal.buffer.lines.get(row).splice(this._terminal.buffer.x, 1);
this._terminal.buffer.lines.get(row).push(ch);
}
this._terminal.updateRange(this._terminal.buffer.y);
}
/**