mtm | Ncurses-based terminal multiplexer |
| download: https://git.y1.nz/archives/mtm.tar.gz | |
| Files | Log | Refs |
commit eef6574bbb697adcddf4d060af2dcdaa8af91843 parent 3e2004572ff10b1767cbc98b0b93540f5369540a Author: Rob King <jking@deadpixi.com> Date: Fri, 23 Jun 2017 18:01:00 -0500 Use the terminal's IL/DL if available. Diffstat:
| M | mtm.c | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/mtm.c b/mtm.c @@ -522,6 +522,7 @@ newview(NODE *p, int y, int x, int h, int w) /* Open a new view. */ n->win = newwin(h, w, y, x); nodelay(n->win, TRUE); scrollok(n->win, TRUE); + idlok(n->win, TRUE); keypad(n->win, TRUE); if (!n->win) return freenode(n, false), NULL;
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.