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

Switch to VTE's built-in ansi feature

Co-authored-by: Christian Duerr <contact@christianduerr.com>
This commit is contained in:
Anhad Singh 2023-05-24 06:35:58 +10:00 committed by GitHub
parent f0379f2da7
commit cb7ad5b7e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 211 additions and 2041 deletions

View file

@ -109,7 +109,7 @@ fn ref_test(dir: &Path) {
config.scrolling.set_history(ref_config.history_size);
let mut terminal = Term::new(&config, &size, Mock);
let mut parser = ansi::Processor::new();
let mut parser: ansi::Processor = ansi::Processor::new();
for byte in recording {
parser.advance(&mut terminal, byte);