diff --git a/TODO b/TODO index 8a07a3f6..9c5fe207 100644 --- a/TODO +++ b/TODO @@ -21,4 +21,14 @@ and buffer_insert_range/delete_range are abominations. this should be rethought - figure out once and for all what is going on with backspace and del +- deal properly with ambiguous ops... list-sessions & list-windows - split list into list-sessions and list-windows +- command form: + tmux cmd [-s session] data + eg + tmux rename-session -ssession newname + tmux rename-window -ssession 5 newname + if no session specified: + - inside tmux, check $TMUX (pid:session or something) + - otherwise if 1 session, use it + - otherwise bail with error diff --git a/op-list.c b/op-list.c index 1d32c862..ba7f3862 100644 --- a/op-list.c +++ b/op-list.c @@ -1,4 +1,4 @@ -/* $Id: op-list.c,v 1.2 2007-09-26 18:32:16 nicm Exp $ */ +/* $Id: op-list.c,v 1.3 2007-09-26 19:38:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -39,9 +39,9 @@ op_list(char *path, int argc, char **argv) *name = '\0'; optind = 1; - while ((opt = getopt(argc, argv, "n:?")) != EOF) { + while ((opt = getopt(argc, argv, "s:?")) != EOF) { switch (opt) { - case 'n': + case 's': if (strlcpy(name, optarg, sizeof name) >= sizeof name) { log_warnx("%s: session name too long", optarg); return (1); @@ -49,13 +49,13 @@ op_list(char *path, int argc, char **argv) break; case '?': default: - return (usage("list [-n session]")); + return (usage("list [-s session]")); } } argc -= optind; argv += optind; if (argc != 0) - return (usage("list [-n session]")); + return (usage("list [-s session]")); if (client_init(path, &cctx, 0) != 0) return (1); diff --git a/op.c b/op.c index e32e8ba0..3c24c8b5 100644 --- a/op.c +++ b/op.c @@ -1,4 +1,4 @@ -/* $Id: op.c,v 1.4 2007-09-26 18:18:39 nicm Exp $ */ +/* $Id: op.c,v 1.5 2007-09-26 19:38:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -33,9 +33,9 @@ op_new(char *path, int argc, char **argv) *name = '\0'; optind = 1; - while ((opt = getopt(argc, argv, "n:?")) != EOF) { + while ((opt = getopt(argc, argv, "s:?")) != EOF) { switch (opt) { - case 'n': + case 's': if (strlcpy(name, optarg, sizeof name) >= sizeof name) { log_warnx("%s: session name too long", optarg); return (1); @@ -43,13 +43,13 @@ op_new(char *path, int argc, char **argv) break; case '?': default: - return (usage("new [-n session]")); + return (usage("new [-s session]")); } } argc -= optind; argv += optind; if (argc != 0) - return (usage("new [-n session]")); + return (usage("new [-s session]")); if (client_init(path, &cctx, 1) != 0) return (1); @@ -72,9 +72,9 @@ op_attach(char *path, int argc, char **argv) *name = '\0'; optind = 1; - while ((opt = getopt(argc, argv, "n:?")) != EOF) { + while ((opt = getopt(argc, argv, "s:?")) != EOF) { switch (opt) { - case 'n': + case 's': if (strlcpy(name, optarg, sizeof name) >= sizeof name) { log_warnx("%s: session name too long", optarg); return (1); @@ -82,13 +82,13 @@ op_attach(char *path, int argc, char **argv) break; case '?': default: - return (usage("attach [-n session]")); + return (usage("attach [-s session]")); } } argc -= optind; argv += optind; if (argc != 0) - return (usage("attach [-n session]")); + return (usage("attach [-s session]")); if (client_init(path, &cctx, 1) != 0) return (1); diff --git a/tmux.c b/tmux.c index 88d517c3..52ad920a 100644 --- a/tmux.c +++ b/tmux.c @@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.12 2007-09-26 19:09:30 nicm Exp $ */ +/* $Id: tmux.c,v 1.13 2007-09-26 19:38:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -55,7 +55,7 @@ usage(const char *s) { if (s == NULL) s = "command [flags]"; - fprintf(stderr, "usage: %s [-v] [-s path] %s\n", __progname, s); + fprintf(stderr, "usage: %s [-v] [-S path] %s\n", __progname, s); return (1); } @@ -161,9 +161,9 @@ main(int argc, char **argv) u_int i; path = NULL; - while ((opt = getopt(argc, argv, "s:v?")) != EOF) { + while ((opt = getopt(argc, argv, "S:v?")) != EOF) { switch (opt) { - case 's': + case 'S': path = xstrdup(optarg); break; case 'v':