From cdf5e51e742d67d1b96940a5096210725a1e51e8 Mon Sep 17 00:00:00 2001 From: Ayose Cazorla Date: Fri, 28 Aug 2020 22:26:03 +0000 Subject: Add escape to report text area size This implements the escapes `CSI 14 t` and `CSI 18 t` which report the text area size in pixels and characters. --- alacritty_terminal/tests/ref.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty_terminal/tests') diff --git a/alacritty_terminal/tests/ref.rs b/alacritty_terminal/tests/ref.rs index 54031022..5036a3ed 100644 --- a/alacritty_terminal/tests/ref.rs +++ b/alacritty_terminal/tests/ref.rs @@ -102,7 +102,7 @@ fn ref_test(dir: &Path) { let mut config = MockConfig::default(); config.scrolling.set_history(ref_config.history_size); - let mut terminal = Term::new(&config, &size, Mock); + let mut terminal = Term::new(&config, size, Mock); let mut parser = ansi::Processor::new(); for byte in recording { -- cgit