Skip to content

Commit

Permalink
Merge pull request #209310 from mmastrac/main
Browse files Browse the repository at this point in the history
 Add `windowOptions` to xtermTerminal to allow `ESC [18t` to work
  • Loading branch information
Tyriar authored Apr 2, 2024
2 parents 325e4c7 + f69d220 commit 8ef2d1d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,11 @@ export class XtermTerminal extends Disposable implements IXtermTerminal, IDetach
overviewRulerWidth: 10,
ignoreBracketedPasteMode: config.ignoreBracketedPasteMode,
rescaleOverlappingGlyphs: config.rescaleOverlappingGlyphs,
windowOptions: {
getWinSizePixels: true,
getCellSizePixels: true,
getWinSizeChars: true,
},
}));
this._updateSmoothScrolling();
this._core = (this.raw as any)._core as IXtermCore;
Expand Down

0 comments on commit 8ef2d1d

Please sign in to comment.