diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-11-03 18:01:21 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-11-03 18:01:21 +0000 |
commit | 6f3b6c8d92df9a40a095a2f64b7da4f37ad7cb1c (patch) | |
tree | 9234158e5e5cc2faa02ccd306b7fc1304c77c420 /tmux.h | |
parent | 24c387206c7c66443b220c9c4f82fbe39fe6625b (diff) | |
parent | a2681ffcee99a83d33d159132bb8e748f4144dd3 (diff) | |
download | rtmux-6f3b6c8d92df9a40a095a2f64b7da4f37ad7cb1c.tar.gz rtmux-6f3b6c8d92df9a40a095a2f64b7da4f37ad7cb1c.tar.bz2 rtmux-6f3b6c8d92df9a40a095a2f64b7da4f37ad7cb1c.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2236,6 +2236,8 @@ typedef int (*mode_tree_search_cb)(void *, void *, const char *); typedef void (*mode_tree_each_cb)(void *, void *, struct client *, key_code); u_int mode_tree_count_tagged(struct mode_tree_data *); void *mode_tree_get_current(struct mode_tree_data *); +void mode_tree_expand_current(struct mode_tree_data *); +void mode_tree_set_current(struct mode_tree_data *, uint64_t); void mode_tree_each_tagged(struct mode_tree_data *, mode_tree_each_cb, struct client *, key_code, int); void mode_tree_up(struct mode_tree_data *, int); @@ -2252,7 +2254,7 @@ struct mode_tree_item *mode_tree_add(struct mode_tree_data *, void mode_tree_remove(struct mode_tree_data *, struct mode_tree_item *); void mode_tree_draw(struct mode_tree_data *); int mode_tree_key(struct mode_tree_data *, struct client *, key_code *, - struct mouse_event *); + struct mouse_event *, u_int *, u_int *); void mode_tree_run_command(struct client *, struct cmd_find_state *, const char *, const char *); |