From a2ace9da24491c46e704ce6120dcb7e6c9d21c20 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 29 May 2017 18:06:34 +0000 Subject: Add ||, && format operators and C: to search pane content. --- tmux.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index bf15dbd9..6fcfd9d3 100644 --- a/tmux.h +++ b/tmux.h @@ -2121,7 +2121,8 @@ void window_pane_key(struct window_pane *, struct client *, struct session *, key_code, struct mouse_event *); int window_pane_outside(struct window_pane *); int window_pane_visible(struct window_pane *); -char *window_pane_search(struct window_pane *, const char *, +u_int window_pane_search(struct window_pane *, const char *); +char *window_pane_search_old(struct window_pane *, const char *, u_int *); const char *window_printable_flags(struct winlink *); struct window_pane *window_pane_find_up(struct window_pane *); -- cgit