mtm | Ncurses-based terminal multiplexer |
| download: https://git.y1.nz/archives/mtm.tar.gz | |
| Files | Log | Refs |
commit 7a6198ccb17db5f3071aa8b1ae450ffd1ce007eb parent 533b659a1a6e8f49722648288e87e07b3304c4a3 Author: Rob King <jking@deadpixi.com> Date: Sat, 27 Jul 2019 23:33:23 -0500 Remove more screen update traffic. Diffstat:
| M | mtm.c | 3 | --- |
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/mtm.c b/mtm.c @@ -744,8 +744,6 @@ fixcursor(void) /* Move the terminal cursor to the active view. */ curs_set(focused->s->off != focused->s->tos? 0 : focused->s->vis); getyx(focused->s->win, y, x); y = MIN(MAX(y, focused->s->tos), focused->s->tos + focused->h - 1); - //wmove(focused->s->win, y, x); XXX - //refreshchildren(focused); wmove(focused->s->win, y, x); } } @@ -1125,7 +1123,6 @@ run(void) /* Run MTM. */ getinput(root, &sfds); refreshchildren(root); - //doupdate(); XXX fixcursor(); refreshchildren(focused); doupdate();
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.