summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-04-25 21:12:49 +0000
committerNicholas Marriott <nicm@openbsd.org>2012-04-25 21:12:49 +0000
commitff5155f71923b078a35509260f01be46222dafb7 (patch)
tree72241b34e6ecffeece9894fb753ca29f1734db6c /tmux.h
parent94795eb48e50ee247ebe5be2efc790268fa80f1a (diff)
Add a buffer with all input from last ground state, will be used for
control mode. From George Nachman.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h6
1 files changed, 6 insertions, 0 deletions
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;
};
/*