We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af6731b commit 5302e62Copy full SHA for 5302e62
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