1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2025-11-06 22:44:18 -05:00

Bump VTE to 0.14.0

Since this is a breaking change, it also bumps the alacritty_terminal
development version to 0.25.0-dev.
This commit is contained in:
Christian Duerr 2025-01-09 10:02:20 +00:00 committed by GitHub
parent 8833551b0d
commit 8ab406d3fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 12 additions and 16 deletions

View file

@ -112,9 +112,7 @@ fn ref_test(dir: &Path) {
let mut terminal = Term::new(options, &size, Mock);
let mut parser: ansi::Processor = ansi::Processor::new();
for byte in recording {
parser.advance(&mut terminal, byte);
}
parser.advance(&mut terminal, &recording);
// Truncate invisible lines from the grid.
let mut term_grid = terminal.grid().clone();