Skip to content

Commit 6c3bc6a

Browse files
jkuriirmana
authored andcommitted
fix(terminal): increase default 1000 numbers scrollback in terminal output
1 parent 942545f commit 6c3bc6a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/components/app-terminal/app-terminal.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ export class AppTerminalComponent implements OnInit {
1818
let xterm: any = <any>xterminal;
1919
xterm.loadAddon('fit');
2020
this.term = new xterm({
21-
cols: 120
21+
cols: 120,
22+
scrollback: 100000
2223
});
2324
}
2425

0 commit comments

Comments
 (0)