diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-03-08 10:34:21 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-03-08 10:34:21 +0000 |
commit | f70bfd248e2b991bcfb01c7cc241ec2579d1735a (patch) | |
tree | 60784a988d2167dca3999d18a11233837191d8ea /usr.bin/tmux/tmux.h | |
parent | 08fcb5243af030539f5557e00a9886a2fc0c2236 (diff) |
Make the mode used to view command output (a variant of copy mode) use
its own mode definition struct with a different init function rather
than calling special setup functions.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index dfd2e6ba75f..c0e6787095f 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.855 2019/03/07 20:24:21 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.856 2019/03/08 10:34:20 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -2310,8 +2310,7 @@ extern const struct window_mode window_client_mode; /* window-copy.c */ extern const struct window_mode window_copy_mode; -void window_copy_init_from_pane(struct window_pane *, int); -void window_copy_init_for_output(struct window_pane *); +extern const struct window_mode window_view_mode; void printflike(2, 3) window_copy_add(struct window_pane *, const char *, ...); void window_copy_vadd(struct window_pane *, const char *, va_list); void window_copy_pageup(struct window_pane *, int); |