summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-09-25 07:41:22 +0000
committerNicholas Marriott <nicm@openbsd.org>2012-09-25 07:41:22 +0000
commit17bbf90393a5599cfe82becdc5c29a7ad48012c4 (patch)
tree717f98054941d6ab55195c37db5ffe96ae636fdb /tmux.h
parent0d0b3cf9a42f7d9cae2a1c150698a6ed9d9634cf (diff)
Add notification for input from a pane, from George Nachman.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index b1e1eeeb..1fbad94b 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1531,6 +1531,7 @@ enum mode_key_cmd mode_key_lookup(struct mode_key_data *, int);
/* notify.c */
void notify_enable(void);
void notify_disable(void);
+void notify_input(struct window_pane *, struct evbuffer *);
void notify_window_layout_changed(struct window *);
void notify_window_unlinked(struct session *, struct window *);
void notify_window_linked(struct session *, struct window *);
@@ -2224,6 +2225,8 @@ void printflike2 control_write(struct client *, const char *, ...);
void control_write_buffer(struct client *, struct evbuffer *);
/* control-notify.c */
+void control_notify_input(struct client *, struct window_pane *,
+ struct evbuffer *);
void control_notify_window_layout_changed(struct window *);
void control_notify_window_unlinked(struct session *, struct window *);
void control_notify_window_linked(struct session *, struct window *);