diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-09-25 07:41:23 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-09-25 07:41:23 +0000 |
commit | 364f9c056d58d6405fd541d95b067d8af7b7ed8b (patch) | |
tree | 2feb15c4d90974fe1915c55f8884e696e4c4cd67 /usr.bin/tmux/tmux.h | |
parent | 3d4cdfc1fd61fa3b649de9056b5eca2cc058a564 (diff) |
Add notification for input from a pane, from George Nachman.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index b0eeea156b1..b1fbc65295e 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.357 2012/09/24 13:39:10 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.358 2012/09/25 07:41:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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 *); |