From 85c48aafffd4e520eea2e598ea199e7b16f787cc Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 5 Mar 2018 12:32:28 +0000 Subject: [PATCH] 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. --- input.c | 1 - 1 file changed, 1 deletion(-) diff --git a/input.c b/input.c index 3a651653..b53c39f6 100644 --- a/input.c +++ b/input.c @@ -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: