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:
@ -65,9 +65,10 @@ cmd_list_panes_exec(struct cmd *self, struct cmd_ctx *ctx)
|
||||
}
|
||||
size += gd->hsize * sizeof *gd->linedata;
|
||||
|
||||
ctx->print(ctx, "%u: [%ux%u] [history %u/%u, %llu bytes]%s",
|
||||
ctx->print(ctx, "%u: [%ux%u] [history %u/%u, %llu bytes]%s%s",
|
||||
n, wp->sx, wp->sy, gd->hsize, gd->hlimit, size,
|
||||
wp == wp->window->active ? " (active)" : "");
|
||||
wp == wp->window->active ? " (active)" : "",
|
||||
wp->fd == -1 ? " (dead)" : "");
|
||||
n++;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user