diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-01-12 17:28:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-12 17:28:40 +0100 |
commit | 12e211d82a1bdef4ffe70c74ee62bc56edfa7590 (patch) | |
tree | 4f39080eef31c6bb05d1a77de0b1238e55582f5a /alacritty_terminal/src | |
parent | 09ed64bd365bdb294a29e2e6b0149b0581a1fa81 (diff) | |
download | alacritty-12e211d82a1bdef4ffe70c74ee62bc56edfa7590.tar.gz alacritty-12e211d82a1bdef4ffe70c74ee62bc56edfa7590.zip |
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.
Diffstat (limited to 'alacritty_terminal/src')
-rw-r--r-- | alacritty_terminal/src/ansi.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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 |