diff options
author | 2020-06-11 19:43:34 +0000 | |
---|---|---|
committer | 2020-06-11 19:43:34 +0000 | |
commit | b981186b7111b693a2123e8909e7a14e92d91d33 (patch) | |
tree | 0be0cfde9def71bcb5a966751f423b1010417187 /usr.bin/tmux/tmux.h | |
parent | Fix small bug in parsing the IORT tables. Mapping entries specify the number (diff) | |
download | wireguard-openbsd-b981186b7111b693a2123e8909e7a14e92d91d33.tar.xz wireguard-openbsd-b981186b7111b693a2123e8909e7a14e92d91d33.zip |
Add some formats for search in copy mode (search_present, search_match).
GitHub issue 2268.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 8a9a2d8ee8c..a3f9ab2473d 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1067 2020/06/11 09:55:47 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1068 2020/06/11 19:43:34 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1922,6 +1922,7 @@ struct format_tree *format_create(struct client *, struct cmdq_item *, int, int); void format_free(struct format_tree *); void format_merge(struct format_tree *, struct format_tree *); +struct window_pane *format_get_pane(struct format_tree *); void printflike(3, 4) format_add(struct format_tree *, const char *, const char *, ...); void format_add_tv(struct format_tree *, const char *, |