diff --git a/TODO b/TODO index 2ac86576..521c735d 100644 --- a/TODO +++ b/TODO @@ -72,6 +72,9 @@ - there is to much redrawing. use flags? - command mode (! + type tmux command) - copy mode +- garbage collect window history (100 lines at a time?) if it hasn't been used + in $x time (need window creation/use times) +- lift SHRT_MAX limits for history -- For 0.2 -------------------------------------------------------------------- - copy and paste diff --git a/cmd-list-windows.c b/cmd-list-windows.c index a7094a1d..111101b2 100644 --- a/cmd-list-windows.c +++ b/cmd-list-windows.c @@ -1,4 +1,4 @@ -/* $Id: cmd-list-windows.c,v 1.13 2007-11-23 13:02:45 nicm Exp $ */ +/* $Id: cmd-list-windows.c,v 1.14 2007-11-23 13:11:43 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -44,7 +44,7 @@ cmd_list_windows_exec(unused void *ptr, struct cmd_ctx *ctx) { struct winlink *wl; struct window *w; - u_int i, sy; + u_int i; unsigned long long size; RB_FOREACH(wl, winlinks, &ctx->session->windows) { @@ -59,10 +59,10 @@ cmd_list_windows_exec(unused void *ptr, struct cmd_ctx *ctx) size += w->screen.hsize * (sizeof *w->screen.grid_size); ctx->print(ctx, - "%d: %s \"%s\" (%s) [%ux%u] [history %u, %llu bytes]", + "%d: %s \"%s\" (%s) [%ux%u] [history %u/%u, %llu bytes]", wl->idx, w->name, w->screen.title, ttyname(w->fd), screen_size_x(&w->screen), screen_size_y(&w->screen), - w->screen.hsize, size); + w->screen.hsize, w->screen.hlimit, size); } if (ctx->cmdclient != NULL)