Show hlimit.

pull/1/head
Nicholas Marriott 2007-11-23 13:11:43 +00:00
parent 4cd1f86359
commit 39246043cf
2 changed files with 7 additions and 4 deletions

3
TODO
View File

@ -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

View File

@ -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 <nicm@users.sourceforge.net>
@ -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)