diff options
author | nicm <nicm> | 2020-03-31 16:53:23 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-03-31 16:53:23 +0000 |
commit | 2624edde46ad13995d4dd33f7d61fce74ac8f1ac (patch) | |
tree | 31439c477c877bddebd996f9d4c8b6d548f24a67 /tmux.h | |
parent | 2ca95840d16e2292d3560ec30f4f24dc9e2eedb2 (diff) | |
download | rtmux-2624edde46ad13995d4dd33f7d61fce74ac8f1ac.tar.gz rtmux-2624edde46ad13995d4dd33f7d61fce74ac8f1ac.tar.bz2 rtmux-2624edde46ad13995d4dd33f7d61fce74ac8f1ac.zip |
Add non-regex search variants to avoid the performance cost for people
with large histories or long lines.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |