mirror of
https://github.com/tmux/tmux.git
synced 2025-09-01 20:57:00 +00:00
Show more window and pane flags in list-* output, and put layout on the
same line.
This commit is contained in:
@ -51,10 +51,10 @@ cmd_list_windows_exec(struct cmd *self, struct cmd_ctx *ctx)
|
||||
return (-1);
|
||||
|
||||
RB_FOREACH(wl, winlinks, &s->windows) {
|
||||
ctx->print(ctx, "%d: %s [%ux%u]",
|
||||
wl->idx, wl->window->name, wl->window->sx, wl->window->sy);
|
||||
layout = layout_dump(wl->window);
|
||||
ctx->print(ctx, " layout: %s", layout);
|
||||
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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user