aboutsummaryrefslogtreecommitdiff
path: root/cmd-list-windows.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2011-04-06 22:20:16 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2011-04-06 22:20:16 +0000
commit108fb38cbc23fe2be642dc2acc62d7d4e059b01a (patch)
tree8ecf95796fecdd4c4c0e7b4a338bd0484ab480e9 /cmd-list-windows.c
parent0a2b3492c3842ad8ce83314a7c72455008c39485 (diff)
downloadrtmux-108fb38cbc23fe2be642dc2acc62d7d4e059b01a.tar.gz
rtmux-108fb38cbc23fe2be642dc2acc62d7d4e059b01a.tar.bz2
rtmux-108fb38cbc23fe2be642dc2acc62d7d4e059b01a.zip
|PatchSet 875
|Date: 2011/03/29 00:13:00 |Author: nicm |Branch: HEAD |Tag: (none) |Log: |Add -a and -s options to lsp to list all panes in the server or session |respectively. Likewise add -s to lsw. From Ben Boeckel.
Diffstat (limited to 'cmd-list-windows.c')
-rw-r--r--cmd-list-windows.c39
1 files changed, 31 insertions, 8 deletions
diff --git a/cmd-list-windows.c b/cmd-list-windows.c
index e4cc13c0..04bccfab 100644
--- a/cmd-list-windows.c
+++ b/cmd-list-windows.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-list-windows.c,v 1.45 2011-01-07 14:45:34 tcunha Exp $ */
+/* $Id: cmd-list-windows.c,v 1.46 2011-04-06 22:20:16 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -28,10 +28,13 @@
int cmd_list_windows_exec(struct cmd *, struct cmd_ctx *);
+void cmd_list_windows_server(struct cmd_ctx *);
+void cmd_list_windows_session(struct session *, struct cmd_ctx *);
+
const struct cmd_entry cmd_list_windows_entry = {
"list-windows", "lsw",
- "t:", 0, 0,
- CMD_TARGET_SESSION_USAGE,
+ "at:", 0, 0,
+ "[-a] " CMD_TARGET_SESSION_USAGE,
0,
NULL,
NULL,
@@ -43,12 +46,34 @@ cmd_list_windows_exec(struct cmd *self, struct cmd_ctx *ctx)
{
struct args *args = self->args;
struct session *s;
+
+ if (args_has(args, 'a'))
+ cmd_list_windows_server(ctx);
+ else {
+ s = cmd_find_session(ctx, args_get(args, 't'));
+ if (s == NULL)
+ return (-1);
+ cmd_list_windows_session(s, ctx);
+ }
+
+ return (0);
+}
+
+void
+cmd_list_windows_server(struct cmd_ctx *ctx)
+{
+ struct session *s;
+
+ RB_FOREACH(s, sessions, &sessions)
+ cmd_list_windows_session(s, ctx);
+}
+
+void
+cmd_list_windows_session(struct session *s, struct cmd_ctx *ctx)
+{
struct winlink *wl;
char *layout;
- if ((s = cmd_find_session(ctx, args_get(args, 't'))) == NULL)
- return (-1);
-
RB_FOREACH(wl, winlinks, &s->windows) {
layout = layout_dump(wl->window);
ctx->print(ctx, "%d: %s [%ux%u] [layout %s]%s",
@@ -56,6 +81,4 @@ cmd_list_windows_exec(struct cmd *self, struct cmd_ctx *ctx)
layout, wl == s->curw ? " (active)" : "");
xfree(layout);
}
-
- return (0);
}