From 12e211d82a1bdef4ffe70c74ee62bc56edfa7590 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sun, 12 Jan 2020 17:28:40 +0100 Subject: Bump VTE to 0.5.0 This change includes dynamic escape buffer support in VTE, which allows us to have arbitrary escape sizes. Since tmux could potentially use very long escapes for the clipboard escape, this allows copying more text. Fixes #1002. --- alacritty_terminal/src/ansi.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty_terminal/src') diff --git a/alacritty_terminal/src/ansi.rs b/alacritty_terminal/src/ansi.rs index 4452409c..94331992 100644 --- a/alacritty_terminal/src/ansi.rs +++ b/alacritty_terminal/src/ansi.rs @@ -724,7 +724,7 @@ where } #[inline] - fn hook(&mut self, params: &[i64], intermediates: &[u8], ignore: bool) { + fn hook(&mut self, params: &[i64], intermediates: &[u8], ignore: bool, _c: char) { debug!( "[unhandled hook] params={:?}, ints: {:?}, ignore: {:?}", params, intermediates, ignore -- cgit