mirror of
https://github.com/tmux/tmux.git
synced 2024-11-17 18:08:51 +00:00
Accept 65 for VT525 as well.
This commit is contained in:
parent
43e5e80343
commit
c99f9e92e0
@ -1314,11 +1314,16 @@ tty_keys_device_attributes(struct tty *tty, const char *buf, size_t len,
|
||||
break;
|
||||
}
|
||||
|
||||
/* Add terminal features. */
|
||||
/*
|
||||
* Add terminal features. Technically, VT420 and VT525 do not support
|
||||
* SIXEL, but some modern terminals report it anyway so we accept it
|
||||
* here too.
|
||||
*/
|
||||
switch (p[0]) {
|
||||
case 62: /* VT220 */
|
||||
case 63: /* VT320 */
|
||||
case 64: /* VT420 */
|
||||
case 65: /* VT525 */
|
||||
for (i = 1; i < n; i++) {
|
||||
log_debug("%s: DA feature: %d", c->name, p[i]);
|
||||
if (p[i] == 4)
|
||||
|
Loading…
Reference in New Issue
Block a user