From ff5155f71923b078a35509260f01be46222dafb7 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 25 Apr 2012 21:12:49 +0000 Subject: Add a buffer with all input from last ground state, will be used for control mode. From George Nachman. --- tmux.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 160831a3..b095e3c7 100644 --- a/tmux.h +++ b/tmux.h @@ -777,6 +777,12 @@ struct input_ctx { #define INPUT_DISCARD 0x1 const struct input_state *state; + + /* + * All input received since we were last in the ground state. Sent to + * control clients on connection. + */ + struct evbuffer *since_ground; }; /* -- cgit