We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af6731b + 5302e62 commit 18262c8Copy full SHA for 18262c8
src/browser/CoreBrowserTerminal.ts
@@ -573,7 +573,10 @@ export class CoreBrowserTerminal extends CoreTerminal implements ITerminal {
573
this._renderService!.handleCursorMove();
574
this._syncTextArea();
575
}));
576
- this._register(this.onResize(() => this._renderService!.handleResize(this.cols, this.rows)));
+ this._register(this.onResize(() => {
577
+ this._renderService!.handleResize(this.cols, this.rows);
578
+ this._syncTextArea();
579
+ }));
580
this._register(this.onBlur(() => this._renderService!.handleBlur()));
581
this._register(this.onFocus(() => this._renderService!.handleFocus()));
582
0 commit comments