mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 01:48:47 +00:00
Unbreak 256 colours when commands are combined.
This commit is contained in:
parent
d4173e2a78
commit
1e145a639b
48
input.c
48
input.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: input.c,v 1.56 2008-09-08 22:03:54 nicm Exp $ */
|
/* $Id: input.c,v 1.57 2008-09-09 17:35:04 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -1061,35 +1061,35 @@ input_handle_sequence_sgr(struct input_ctx *ictx)
|
|||||||
bg = s->bg;
|
bg = s->bg;
|
||||||
|
|
||||||
n = ARRAY_LENGTH(&ictx->args);
|
n = ARRAY_LENGTH(&ictx->args);
|
||||||
switch (n) {
|
if (n == 0) {
|
||||||
case 0:
|
|
||||||
attr = 0;
|
attr = 0;
|
||||||
fg = 8;
|
fg = 8;
|
||||||
bg = 8;
|
bg = 8;
|
||||||
break;
|
} else {
|
||||||
case 3:
|
|
||||||
if (input_get_argument(ictx, 1, &m, 0) != 0)
|
|
||||||
return;
|
|
||||||
if (m == 5) {
|
|
||||||
if (input_get_argument(ictx, 0, &o, 0) != 0)
|
|
||||||
return;
|
|
||||||
if (input_get_argument(ictx, 2, &m, 0) != 0)
|
|
||||||
return;
|
|
||||||
if (o == 38) {
|
|
||||||
attr |= ATTR_FG256;
|
|
||||||
fg = m;
|
|
||||||
break;
|
|
||||||
} else if (o == 48) {
|
|
||||||
attr |= ATTR_BG256;
|
|
||||||
bg = m;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* FALLTHROUGH */
|
|
||||||
default:
|
|
||||||
for (i = 0; i < n; i++) {
|
for (i = 0; i < n; i++) {
|
||||||
if (input_get_argument(ictx, i, &m, 0) != 0)
|
if (input_get_argument(ictx, i, &m, 0) != 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (m == 38 || m == 48) {
|
||||||
|
i++;
|
||||||
|
if (input_get_argument(ictx, i, &o, 0) != 0)
|
||||||
|
return;
|
||||||
|
if (o != 5)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
i++;
|
||||||
|
if (input_get_argument(ictx, i, &o, 0) != 0)
|
||||||
|
return;
|
||||||
|
if (m == 38) {
|
||||||
|
attr |= ATTR_FG256;
|
||||||
|
fg = o;
|
||||||
|
} else if (m == 48) {
|
||||||
|
attr |= ATTR_BG256;
|
||||||
|
bg = o;
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
switch (m) {
|
switch (m) {
|
||||||
case 0:
|
case 0:
|
||||||
case 10:
|
case 10:
|
||||||
|
Loading…
Reference in New Issue
Block a user