For some reason tmux treats SGR 10 as SGR 0. It has done since the first

version and I'm not sure why since no other terminal appears to. Change
to just ignore SGR 10 instead.
This commit is contained in:
nicm 2018-03-05 12:32:28 +00:00
parent 182357f24b
commit 85c48aafff

View File

@ -1907,7 +1907,6 @@ input_csi_dispatch_sgr(struct input_ctx *ictx)
switch (n) {
case 0:
case 10:
memcpy(gc, &grid_default_cell, sizeof *gc);
break;
case 1: