diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-03-07 20:02:41 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-03-07 20:02:41 +0000 |
commit | a1009e7bd3c4acd7dc4157e317013f066d1deca8 (patch) | |
tree | 4b078a40fadb0fc7007ff12ec00be61045bca5de /tmux.h | |
parent | 5a564a0c1ac768d6fc02669891fdcbd2487af0e8 (diff) | |
parent | 3c24bc5617bfdf90f94cc088f3769397c7569649 (diff) | |
download | rtmux-a1009e7bd3c4acd7dc4157e317013f066d1deca8.tar.gz rtmux-a1009e7bd3c4acd7dc4157e317013f066d1deca8.tar.bz2 rtmux-a1009e7bd3c4acd7dc4157e317013f066d1deca8.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -45,6 +45,7 @@ struct cmdq_item; struct cmdq_list; struct environ; struct format_job_tree; +struct format_tree; struct input_ctx; struct job; struct mode_tree_data; @@ -709,6 +710,7 @@ struct window_mode { void (*command)(struct window_pane *, struct client *, struct session *, struct winlink *, struct args *, struct mouse_event *); + void (*formats)(struct window_pane *, struct format_tree *); }; #define WINDOW_MODE_TIMEOUT 180 @@ -2306,8 +2308,6 @@ void printflike(2, 3) window_copy_add(struct window_pane *, const char *, ...); void window_copy_vadd(struct window_pane *, const char *, va_list); void window_copy_pageup(struct window_pane *, int); void window_copy_start_drag(struct client *, struct mouse_event *); -void window_copy_add_formats(struct window_pane *, - struct format_tree *); /* names.c */ void check_window_name(struct window *); |