Skip to content

Commit e306173

Browse files
javier-godoypaodb
authored andcommitted
fix: fix regression in cursorBackwardWrapped
Close #61
1 parent 862de7c commit e306173

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/resources/META-INF/frontend/fc-xterm/xterm-console-mixin.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -89,16 +89,17 @@ class ConsoleAddon extends TerminalAddon<IConsoleMixin> {
8989
let buffer = this._bufferService.buffer;
9090
let x = buffer.x;
9191
let y = buffer.y;
92-
let apply=true;
92+
let apply=false;
9393

9494
for (let i=0; i< (params && params[0] || 1); i++) {
9595
let line = buffer.lines.get(buffer.y+buffer.ybase);
9696
if (!line.isWrapped && buffer.x< 1+promptLength()) {
97-
apply=false;
9897
break;
9998
} else if (buffer.x>0) {
99+
apply=true;
100100
this.cursorBackward({params:[1]});
101101
} else if (line.isWrapped) {
102+
apply=true;
102103
this.cursorPrecedingLine({params:[1]});
103104
scanEOL();
104105
--this._activeBuffer.x;

0 commit comments

Comments
 (0)