1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-11 13:51:01 -05:00

Handle OSC command '1' (Set Icon Name)

This commit is contained in:
Aaron Hill 2017-03-03 18:04:09 -05:00 committed by Joe Wilm
parent 00d271b7e0
commit d7c0b1115a

View file

@ -560,6 +560,10 @@ impl<'a, H, W> vte::Perform for Performer<'a, H, W>
}
},
// Set icon name
// This is ignored, since alacritty has no concept of tabs
b'1' => return,
// Set color index
b'4' => {
if params.len() < 3 {