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:
parent
00d271b7e0
commit
d7c0b1115a
1 changed files with 4 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue