diff options
author | nicm <nicm> | 2019-03-08 10:34:20 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-03-08 10:34:20 +0000 |
commit | de730f68a4bc97e26f8f5dcb404ed27dc489c0fd (patch) | |
tree | e55ae16a116c303ea67fa8daf0f85172828c5374 /tmux.h | |
parent | 9cc04a0f9a62c5f4d9e643538f0f866115d6b16d (diff) | |
download | rtmux-de730f68a4bc97e26f8f5dcb404ed27dc489c0fd.tar.gz rtmux-de730f68a4bc97e26f8f5dcb404ed27dc489c0fd.tar.bz2 rtmux-de730f68a4bc97e26f8f5dcb404ed27dc489c0fd.zip |
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 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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); |