mirror of
https://github.com/tmux/tmux.git
synced 2025-01-07 08:18:48 +00:00
Update.
This commit is contained in:
parent
f03dd8d216
commit
dcde77cd09
13
TODO
13
TODO
@ -101,12 +101,7 @@
|
|||||||
- command to list what is actually running in each window with command line,
|
- command to list what is actually running in each window with command line,
|
||||||
pid (need some adaption of the osdep code)
|
pid (need some adaption of the osdep code)
|
||||||
- options to change/remove the symbols (*-+ etc) in status line (bloat?)
|
- options to change/remove the symbols (*-+ etc) in status line (bloat?)
|
||||||
- status-fg/bg (and mode, message) are reversed, this is confusing if remove
|
- asupport for bce
|
||||||
reverse from status-attr, but confusing by default if they are fixed. best
|
- reset attributes when idle so ~./pkill are less likely to leave terminal upset
|
||||||
would be to make fg/bg adaptive and have them do the right thing. need
|
- it would be nice if the start/end line keys in copy mode were aware of
|
||||||
changes/additions to options though
|
wrapped lines
|
||||||
- support for bce
|
|
||||||
- when the external term doesn't support setaf/setab, the term inside still
|
|
||||||
does so programs which attempt to show reverse by swapping fg/bg colours
|
|
||||||
rather than with the reverse attribute (eg mc) will display incorrectly ** if
|
|
||||||
this was fixed, could lose reverse from status-fg/bg and fix reverse problems
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: cmd-list-windows.c,v 1.38 2009-07-28 22:12:16 tcunha Exp $ */
|
/* $Id: cmd-list-windows.c,v 1.39 2009-08-08 16:03:09 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -71,9 +71,10 @@ cmd_list_windows_exec(struct cmd *self, struct cmd_ctx *ctx)
|
|||||||
size += gd->hsize * (sizeof *gd->data);
|
size += gd->hsize * (sizeof *gd->data);
|
||||||
size += gd->hsize * (sizeof *gd->size);
|
size += gd->hsize * (sizeof *gd->size);
|
||||||
|
|
||||||
|
name = NULL;
|
||||||
if (wp->fd != -1)
|
if (wp->fd != -1)
|
||||||
name = ttyname(wp->fd);
|
name = ttyname(wp->fd);
|
||||||
else
|
if (name == NULL)
|
||||||
name = "unknown";
|
name = "unknown";
|
||||||
ctx->print(ctx,
|
ctx->print(ctx,
|
||||||
" %s [%ux%u] [history %u/%u, %llu bytes]",
|
" %s [%ux%u] [history %u/%u, %llu bytes]",
|
||||||
|
Loading…
Reference in New Issue
Block a user