git.y1.nz

mtm

Ncurses-based terminal multiplexer
download: https://git.y1.nz/archives/mtm.tar.gz
Files | Log | Refs

commit a0f9a19b0128c00e4018fa39fde7798eb5ffa532
parent 77060a88065f29fac8fec767f16c2d6563e24c4c
Author: Rob King <jking@deadpixi.com>
Date:   Sat, 27 Jul 2019 23:12:28 -0500

Better xterm ASB emulation.

Diffstat:
Mmtm.c5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/mtm.c b/mtm.c @@ -426,7 +426,10 @@ HANDLER(mode) /* Set or Reset Mode */ case 20: n->lnm = set; break; case 25: s->vis = set? 1 : 0; break; case 34: s->vis = set? 1 : 2; break; - case 47: case 1047: case 1049: if (set && n->s != &n->alt){ + case 1048: CALL((set? sc : rc)); break; + case 1049: + CALL((set? sc : rc)); /* fall-through */ + case 47: case 1047: if (set && n->s != &n->alt){ n->s = &n->alt; CALL(cls); } else if (!set && n->s != &n->pri)

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.