aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2016-06-16 10:55:47 +0000
committernicm <nicm>2016-06-16 10:55:47 +0000
commit325cbe90d925d3deb90559463b6d968c31fa5924 (patch)
tree579aa5c9a0ddab9362560e5593e4843d5ca3c0a7 /tmux.h
parent0c7ddae2abe67762b00fea10723d01251f3c156d (diff)
downloadrtmux-325cbe90d925d3deb90559463b6d968c31fa5924.tar.gz
rtmux-325cbe90d925d3deb90559463b6d968c31fa5924.tar.bz2
rtmux-325cbe90d925d3deb90559463b6d968c31fa5924.zip
Allow a command to be specified to display-panes, similar to
command-prompt, rather than always just selecting the pane.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index b84530f2..f6588afe 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1277,6 +1277,8 @@ struct client {
struct key_table *keytable;
struct event identify_timer;
+ void (*identify_callback)(struct client *, struct window_pane *);
+ void *identify_callback_data;
char *message_string;
struct event message_timer;
@@ -1937,7 +1939,7 @@ void server_destroy_session_group(struct session *);
void server_destroy_session(struct session *);
void server_check_unattached(void);
void server_set_identify(struct client *);
-void server_clear_identify(struct client *);
+void server_clear_identify(struct client *, struct window_pane *);
int server_set_stdin_callback(struct client *, void (*)(struct client *,
int, void *), void *, char **);
void server_unzoom_window(struct window *);