mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
#1521: added default behavior of 'ESC 8' escape sequence (DECRC) when cursor state was never saved before using 'ESC 7' (DECSC)
This commit is contained in:
+1
-1
@@ -1834,7 +1834,7 @@ export class InputHandler implements IInputHandler {
|
||||
public restoreCursor(params: number[]): void {
|
||||
this._terminal.buffer.x = this._terminal.buffer.savedX || 0;
|
||||
this._terminal.buffer.y = this._terminal.buffer.savedY || 0;
|
||||
this._terminal.curAttr = this._terminal.savedCurAttr;
|
||||
this._terminal.curAttr = this._terminal.savedCurAttr || 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user