mtm | Ncurses-based terminal multiplexer |
| download: https://git.y1.nz/archives/mtm.tar.gz | |
| Files | Log | Refs |
commit 9122269e7273d2f822923eb313d51f72fc902aa0 parent 67f5b86818cbb0d76c52ce4387e3aa281b447c0b Author: Rob King <jking@deadpixi.com> Date: Fri, 23 Jun 2017 17:59:17 -0500 Remove kbs flag. Diffstat:
| M | mtm.c | 3 | +-- |
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/mtm.c b/mtm.c @@ -66,7 +66,7 @@ struct COLORTABLE{ /*** GLOBALS AND PROTOTYPES */ static COLORTABLE ctable[MAXCTABLE]; static NODE *root, *focused; -static bool cmd, kbs; +static bool cmd; static int commandkey = CTL(COMMAND_KEY), nfds = 1; /* stdin */ static fd_set fds; static char iobuf[BUFSIZ + 1]; @@ -808,7 +808,6 @@ main(int argc, char **argv) signal(SIGCHLD, SIG_IGN); /* automatically reap children */ int c = 0; while ((c = getopt(argc, argv, "mubT:t:c:")) != -1) switch (c){ - case 'b': kbs = true; break; case 'c': commandkey = CTL(optarg[0]); break; case 'T': setenv("TERM", optarg, 1); break; case 't': term = optarg; break;
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.