diff options
author | 2015-09-13 13:31:40 +0000 | |
---|---|---|
committer | 2015-09-13 13:31:40 +0000 | |
commit | 47f0136494ac7c4768d11d4de16a0e44e94fe94c (patch) | |
tree | dbab9615fafd2fb0d3700d46aea7b47fd3e29603 /usr.bin/tmux/tmux.h | |
parent | - FOO=bar; export FOO -> export FOO=bar (diff) | |
download | wireguard-openbsd-47f0136494ac7c4768d11d4de16a0e44e94fe94c.tar.xz wireguard-openbsd-47f0136494ac7c4768d11d4de16a0e44e94fe94c.zip |
Add copy-mode -e to exit copy mode when scrolling off the bottom, useful
for quick view of history, from Cam Hutchison.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 85f0929b935..8913f21d8c5 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.556 2015/09/11 14:41:50 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.557 2015/09/13 13:31:40 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -2068,7 +2068,7 @@ extern const char window_clock_table[14][5][5]; /* window-copy.c */ extern const struct window_mode window_copy_mode; -void window_copy_init_from_pane(struct window_pane *); +void window_copy_init_from_pane(struct window_pane *, u_int); void window_copy_init_for_output(struct window_pane *); void printflike(2, 3) window_copy_add(struct window_pane *, const char *, ...); void window_copy_vadd(struct window_pane *, const char *, va_list); |