chore(ui): bump xterm scrollback (#21772)

This commit is contained in:
Pavel Feldman 2023-03-17 16:14:21 -07:00 committed by GitHub
parent 2a2d6c25a4
commit 50dd04ae61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,6 +47,7 @@ export const XtermWrapper: React.FC<{ source: XtermDataSource }> = ({
const newTerminal = new Terminal({
convertEol: true,
fontSize: 13,
scrollback: 10000,
fontFamily: 'var(--vscode-editor-font-family)',
theme: isDarkTheme() ? darkTheme : lightTheme
});