From 2624edde46ad13995d4dd33f7d61fce74ac8f1ac Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 31 Mar 2020 16:53:23 +0000 Subject: Add non-regex search variants to avoid the performance cost for people with large histories or long lines. --- tmux.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 3023376c..20559144 100644 --- a/tmux.h +++ b/tmux.h @@ -927,7 +927,9 @@ struct window_pane { TAILQ_HEAD (, window_mode_entry) modes; struct event modetimer; time_t modelast; + char *searchstr; + int searchregex; TAILQ_ENTRY(window_pane) entry; RB_ENTRY(window_pane) tree_entry; -- cgit