summaryrefslogtreecommitdiffstats
path: root/cmd-list-panes.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmd-list-panes.c')
-rw-r--r--cmd-list-panes.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmd-list-panes.c b/cmd-list-panes.c
index ba70faa1..e96d596b 100644
--- a/cmd-list-panes.c
+++ b/cmd-list-panes.c
@@ -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++;
}