From 9a56671a7565322142b9871c5fe1d945ce200b9a Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 5 Jan 2017 09:07:15 +0000 Subject: Highlight all occurrences of search string after searching in copy mode. --- status.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'status.c') diff --git a/status.c b/status.c index bd77b90d..ecb55380 100644 --- a/status.c +++ b/status.c @@ -475,7 +475,8 @@ draw: /* Copy the window list. */ c->wlmouse = -wloffset + wlstart; screen_write_cursormove(&ctx, wloffset, 0); - screen_write_copy(&ctx, &window_list, wlstart, 0, wlwidth, 1); + screen_write_copy(&ctx, &window_list, wlstart, 0, wlwidth, 1, NULL, + NULL); screen_free(&window_list); screen_write_stop(&ctx); -- cgit