aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-08-31 20:46:19 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-08-31 20:46:19 +0000
commit04319964b95304138dbe5cbce0b97222769d0c17 (patch)
tree3d067da0a55da208bbf9dd18d1711d5b165ffcfc /tmux.h
parent8102ec3be55e9800837eeb2f1f9135a433452794 (diff)
downloadrtmux-04319964b95304138dbe5cbce0b97222769d0c17.tar.gz
rtmux-04319964b95304138dbe5cbce0b97222769d0c17.tar.bz2
rtmux-04319964b95304138dbe5cbce0b97222769d0c17.zip
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 'tmux.h')
-rw-r--r--tmux.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index aaa1190c..36e660df 100644
--- a/tmux.h
+++ b/tmux.h
@@ -935,8 +935,11 @@ struct client {
#define CLIENT_REPEAT 0x20 /* allow command to repeat within repeat time */
#define CLIENT_SUSPENDED 0x40
#define CLIENT_BAD 0x80
+#define CLIENT_IDENTIFY 0x100
int flags;
+ struct timeval identify_timer;
+
char *message_string;
struct timeval message_timer;
@@ -1164,6 +1167,7 @@ void environ_update(const char *, struct environ *, struct environ *);
/* tty.c */
u_char tty_get_acs(struct tty *, u_char);
+void tty_attributes(struct tty *, const struct grid_cell *);
void tty_reset(struct tty *);
void tty_region(struct tty *, u_int, u_int, u_int);
void tty_cursor(struct tty *, u_int, u_int, u_int, u_int);
@@ -1249,6 +1253,7 @@ void paste_add(struct paste_stack *, char *, u_int);
int paste_replace(struct paste_stack *, u_int, char *);
/* clock.c */
+extern const char clock_table[14][5][5];
void clock_draw(struct screen_write_ctx *, u_int, int);
/* cmd.c */
@@ -1285,6 +1290,7 @@ extern const struct cmd_entry cmd_copy_mode_entry;
extern const struct cmd_entry cmd_delete_buffer_entry;
extern const struct cmd_entry cmd_detach_client_entry;
extern const struct cmd_entry cmd_display_message_entry;
+extern const struct cmd_entry cmd_display_panes_entry;
extern const struct cmd_entry cmd_down_pane_entry;
extern const struct cmd_entry cmd_find_window_entry;
extern const struct cmd_entry cmd_has_session_entry;
@@ -1435,6 +1441,8 @@ void server_status_window(struct window *);
void server_lock(void);
int server_unlock(const char *);
void server_kill_window(struct window *);
+void server_set_identify(struct client *);
+void server_clear_identify(struct client *);
/* status.c */
int status_redraw(struct client *);