diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-05-01 14:01:14 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-05-01 14:01:14 +0100 |
commit | e354b0e40fe1be1e1f8977d424e02e6487039a56 (patch) | |
tree | 9388fd781db45da7e8b22fa3b8c9e8cc08ad1de6 /tmux.h | |
parent | 4b39120d2270ee4435bc0e6a08826ce9abecb738 (diff) | |
parent | 0ccfb61bb0e0beb5fe76b64e30637de7d9f696c7 (diff) | |
download | rtmux-e354b0e40fe1be1e1f8977d424e02e6487039a56.tar.gz rtmux-e354b0e40fe1be1e1f8977d424e02e6487039a56.tar.bz2 rtmux-e354b0e40fe1be1e1f8977d424e02e6487039a56.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -45,6 +45,7 @@ struct client; struct cmdq_item; struct cmdq_list; struct environ; +struct format_job_tree; struct input_ctx; struct mode_key_cmdstr; struct mouse_event; @@ -1294,6 +1295,7 @@ struct client { struct timeval activity_time; struct environ *environ; + struct format_job_tree *jobs; char *title; const char *cwd; @@ -1505,7 +1507,8 @@ char *paste_make_sample(struct paste_buffer *); #define FORMAT_PANE 0x80000000U #define FORMAT_WINDOW 0x40000000U struct format_tree; -struct format_tree *format_create(struct cmdq_item *, int, int); +struct format_tree *format_create(struct client *, struct cmdq_item *, int, + int); void format_free(struct format_tree *); void printflike(3, 4) format_add(struct format_tree *, const char *, const char *, ...); @@ -1521,6 +1524,7 @@ void format_defaults_pane(struct format_tree *, struct window_pane *); void format_defaults_paste_buffer(struct format_tree *, struct paste_buffer *); +void format_lost_client(struct client *); /* hooks.c */ struct hook; |