comment missing empty cell handling

This commit is contained in:
Jörg Breitbart
2020-02-16 20:53:53 +01:00
parent 6f886fe167
commit f736b6c299
+1
View File
@@ -726,6 +726,7 @@ export class InputHandler extends Disposable implements IInputHandler {
if (buffer.x === 0 && buffer.y && buffer.lines.get(buffer.y + buffer.ybase).isWrapped) {
buffer.y--;
buffer.x = this._bufferService.cols - 1;
// TODO: skip last col if it is empty after wide char
}
}
if (buffer.x >= this._bufferService.cols) {