diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-04-21 22:01:14 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-04-21 22:01:14 +0100 |
commit | fd13731049148d0205fa6ed1843041dad0573677 (patch) | |
tree | 7cfc3571a33e9332b95b0805522c19d0bf59de2a /tmux.h | |
parent | 1f209ed030f9879d873d10341171889af08ae070 (diff) | |
parent | c68ceca8cd4294c2b9991aa1884d58258596868f (diff) | |
download | rtmux-fd13731049148d0205fa6ed1843041dad0573677.tar.gz rtmux-fd13731049148d0205fa6ed1843041dad0573677.tar.bz2 rtmux-fd13731049148d0205fa6ed1843041dad0573677.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 19 |
1 files changed, 9 insertions, 10 deletions
@@ -1149,7 +1149,6 @@ enum cmd_find_type { CMD_FIND_SESSION, }; struct cmd_find_state { - struct cmdq_item *item; int flags; struct cmd_find_state *current; @@ -1734,14 +1733,10 @@ long long args_strtonum(struct args *, u_char, long long, long long, char **); /* cmd-find.c */ -int cmd_find_current(struct cmd_find_state *, struct cmdq_item *, - int); -int cmd_find_target(struct cmd_find_state *, - struct cmd_find_state *, struct cmdq_item *, const char *, - enum cmd_find_type, int); +int cmd_find_target(struct cmd_find_state *, struct cmdq_item *, + const char *, enum cmd_find_type, int); struct client *cmd_find_client(struct cmdq_item *, const char *, int); -void cmd_find_clear_state(struct cmd_find_state *, - struct cmdq_item *, int); +void cmd_find_clear_state(struct cmd_find_state *, int); int cmd_find_empty_state(struct cmd_find_state *); int cmd_find_valid_state(struct cmd_find_state *); void cmd_find_copy_state(struct cmd_find_state *, @@ -1754,10 +1749,14 @@ void cmd_find_from_winlink(struct cmd_find_state *, int cmd_find_from_session_window(struct cmd_find_state *, struct session *, struct window *); int cmd_find_from_window(struct cmd_find_state *, struct window *); -int cmd_find_from_pane(struct cmd_find_state *, - struct window_pane *); void cmd_find_from_winlink_pane(struct cmd_find_state *, struct winlink *, struct window_pane *); +int cmd_find_from_pane(struct cmd_find_state *, + struct window_pane *); +int cmd_find_from_client(struct cmd_find_state *, struct client *); +int cmd_find_from_mouse(struct cmd_find_state *, + struct mouse_event *); +int cmd_find_from_nothing(struct cmd_find_state *); /* cmd.c */ int cmd_pack_argv(int, char **, char *, size_t); |