From 6f700904a9f3dfdd611486686edf1439af55e5f0 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 29 Apr 2020 18:08:21 +0100 Subject: Copy mode search improvements: - Add styles for the search marking styles (copy-mode-match-style and copy-mode-current-match-style). - Show the current match (the one with the cursor on it) in a different style. - Copying without a selection will copy the current match if there is one. --- tmux.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index d3cc1a53..c9c8637c 100644 --- a/tmux.h +++ b/tmux.h @@ -2436,8 +2436,6 @@ void screen_write_vnputs(struct screen_write_ctx *, ssize_t, const struct grid_cell *, const char *, va_list); void screen_write_putc(struct screen_write_ctx *, const struct grid_cell *, u_char); -void screen_write_copy(struct screen_write_ctx *, struct screen *, u_int, - u_int, u_int, u_int, bitstr_t *, const struct grid_cell *); void screen_write_fast_copy(struct screen_write_ctx *, struct screen *, u_int, u_int, u_int, u_int); void screen_write_hline(struct screen_write_ctx *, u_int, int, int); -- cgit