diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-08-31 20:46:20 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-08-31 20:46:20 +0000 |
commit | b3d19f3bfd39a96bc976abf38ce158e212394563 (patch) | |
tree | 8f5dfd575b04d6eb71ec090fb8389cfb2c53f77c /usr.bin/tmux/tty.c | |
parent | 6d6be4848445d3989ec1d654b09cd35891f1e71e (diff) |
Add a new display-panes command, with two options (display-panes-colour and
display-panes-time), which displays a visual indication of the number of each
pane.
Diffstat (limited to 'usr.bin/tmux/tty.c')
-rw-r--r-- | usr.bin/tmux/tty.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index 8081c30c56e..9c4a16e99c4 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.26 2009/08/21 12:29:59 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.27 2009/08/31 20:46:19 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -34,7 +34,6 @@ void tty_raw(struct tty *, const char *); int tty_try_256(struct tty *, u_char, const char *); int tty_try_88(struct tty *, u_char, const char *); -void tty_attributes(struct tty *, const struct grid_cell *); void tty_attributes_fg(struct tty *, const struct grid_cell *); void tty_attributes_bg(struct tty *, const struct grid_cell *); |