From 26aa0689a52a9c93089c5fc7e68203c4209201cd Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 4 Jul 2011 14:04:40 +0000 Subject: Show full targets for lsp/lsw -a. --- cmd-list-windows.c | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) (limited to 'cmd-list-windows.c') diff --git a/cmd-list-windows.c b/cmd-list-windows.c index 11d38412..239f69f7 100644 --- a/cmd-list-windows.c +++ b/cmd-list-windows.c @@ -29,7 +29,7 @@ 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 *); +void cmd_list_windows_session(struct session *, struct cmd_ctx *, int); const struct cmd_entry cmd_list_windows_entry = { "list-windows", "lsw", @@ -53,7 +53,7 @@ cmd_list_windows_exec(struct cmd *self, struct cmd_ctx *ctx) s = cmd_find_session(ctx, args_get(args, 't'), 0); if (s == NULL) return (-1); - cmd_list_windows_session(s, ctx); + cmd_list_windows_session(s, ctx, 0); } return (0); @@ -65,20 +65,28 @@ cmd_list_windows_server(struct cmd_ctx *ctx) struct session *s; RB_FOREACH(s, sessions, &sessions) - cmd_list_windows_session(s, ctx); + cmd_list_windows_session(s, ctx, 1); } void -cmd_list_windows_session(struct session *s, struct cmd_ctx *ctx) +cmd_list_windows_session(struct session *s, struct cmd_ctx *ctx, int type) { struct winlink *wl; char *layout; RB_FOREACH(wl, winlinks, &s->windows) { layout = layout_dump(wl->window); - ctx->print(ctx, "%d: %s [%ux%u] [layout %s]%s", - wl->idx, wl->window->name, wl->window->sx, wl->window->sy, - layout, wl == s->curw ? " (active)" : ""); + if (type) { + ctx->print(ctx, "%s:%d: %s [%ux%u] [layout %s]%s", + s->name, wl->idx, wl->window->name, wl->window->sx, + wl->window->sy, layout, + wl == s->curw ? " (active)" : ""); + } else { + ctx->print(ctx, "%d: %s [%ux%u] [layout %s]%s", + wl->idx, wl->window->name, wl->window->sx, + wl->window->sy, layout, + wl == s->curw ? " (active)" : ""); + } xfree(layout); } } -- cgit