From 2a1c4d29e9be02b0085af184f71e0ae8abc796d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 16 Jul 2019 12:53:58 +0200 Subject: [PATCH] csi: implement \E[21m (disable bold) --- csi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/csi.c b/csi.c index fe4c0b1d..4d4fdbf1 100644 --- a/csi.c +++ b/csi.c @@ -133,6 +133,7 @@ csi_sgr(struct terminal *term) case 8: term->vt.attrs.conceal = true; break; case 9: term->vt.attrs.strikethrough = true; break; + case 21: term->vt.attrs.bold = false; break; case 22: term->vt.attrs.bold = term->vt.dim = false; break; case 23: term->vt.attrs.italic = false; break; case 24: term->vt.attrs.underline = false; break;