diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-08-30 12:03:59 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-08-30 12:03:59 +0100 |
commit | b4c633cc40cd3d5963e24e6d560bc2c7f6553000 (patch) | |
tree | 3c94bc6f3d3b3924b12f791c2adb5a664ecdd93b /tmux.h | |
parent | 8f364053ca9242dafcddc304aed49aac80132ba3 (diff) | |
parent | 54c5070767d58a4fb0559eb9b3ee19caa72c4a73 (diff) | |
download | rtmux-b4c633cc40cd3d5963e24e6d560bc2c7f6553000.tar.gz rtmux-b4c633cc40cd3d5963e24e6d560bc2c7f6553000.tar.bz2 rtmux-b4c633cc40cd3d5963e24e6d560bc2c7f6553000.zip |
Merge branch 'master' of github.com:tmux/tmux
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 20 |
1 files changed, 11 insertions, 9 deletions
@@ -1772,20 +1772,22 @@ void cmd_find_copy_state(struct cmd_find_state *, struct cmd_find_state *); void cmd_find_log_state(const char *, struct cmd_find_state *); void cmd_find_from_session(struct cmd_find_state *, - struct session *); + struct session *, int); void cmd_find_from_winlink(struct cmd_find_state *, - struct winlink *); + struct winlink *, int); 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 *); + struct session *, struct window *, int); +int cmd_find_from_window(struct cmd_find_state *, struct window *, + int); void cmd_find_from_winlink_pane(struct cmd_find_state *, - struct winlink *, struct window_pane *); + struct winlink *, struct window_pane *, int); int cmd_find_from_pane(struct cmd_find_state *, - struct window_pane *); -int cmd_find_from_client(struct cmd_find_state *, struct client *); + struct window_pane *, int); +int cmd_find_from_client(struct cmd_find_state *, struct client *, + int); int cmd_find_from_mouse(struct cmd_find_state *, - struct mouse_event *); -int cmd_find_from_nothing(struct cmd_find_state *); + struct mouse_event *, int); +int cmd_find_from_nothing(struct cmd_find_state *, int); /* cmd.c */ int cmd_pack_argv(int, char **, char *, size_t); |