diff options
author | Thomas Adam <thomas@xteddy.org> | 2014-09-25 11:29:54 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2014-09-25 11:29:54 +0100 |
commit | 2874a431c050527244a56e7f241baf053c722f88 (patch) | |
tree | bfbd88ff749ef321ef2ba1b53f10246cc87ef85a /tmux.h | |
parent | 5e7f1b9f0a5bcff8f9ba410c17de4e822428614c (diff) | |
parent | 21062d74d5373699aad9fe8d77bd5312a33e9834 (diff) | |
download | rtmux-2874a431c050527244a56e7f241baf053c722f88.tar.gz rtmux-2874a431c050527244a56e7f241baf053c722f88.tar.bz2 rtmux-2874a431c050527244a56e7f241baf053c722f88.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -791,6 +791,7 @@ LIST_HEAD(joblist, job); struct screen_sel { int flag; int rectflag; + int modekeys; u_int sx; u_int sy; @@ -953,6 +954,7 @@ struct window_pane { #define PANE_FOCUSED 0x4 #define PANE_RESIZE 0x8 #define PANE_FOCUSPUSH 0x10 +#define PANE_INPUTOFF 0x20 int argc; char **argv; @@ -1919,6 +1921,9 @@ void cmdq_flush(struct cmd_q *); int cmd_string_parse(const char *, struct cmd_list **, const char *, u_int, char **); +/* cmd-wait-for.c */ +void cmd_wait_for_flush(void); + /* client.c */ int client_main(int, char **, int); @@ -2320,7 +2325,7 @@ void set_signals(void(*)(int, short, void *)); void clear_signals(int); /* control.c */ -void control_callback(struct client *, int, void*); +void control_callback(struct client *, int, void *); void printflike2 control_write(struct client *, const char *, ...); void control_write_buffer(struct client *, struct evbuffer *); |