diff options
author | 2009-12-01 18:42:38 +0000 | |
---|---|---|
committer | 2009-12-01 18:42:38 +0000 | |
commit | 3373972cfafba85cdd30f818dd4ebefecb7a3962 (patch) | |
tree | 04ca91006f38249a18cc2fdd35b0d2383657841b /usr.bin/tmux/tmux.h | |
parent | The MD ACPI PSS paths are using MSRs they shouldn't be (diff) | |
download | wireguard-openbsd-3373972cfafba85cdd30f818dd4ebefecb7a3962.tar.xz wireguard-openbsd-3373972cfafba85cdd30f818dd4ebefecb7a3962.zip |
New command, capture-pane, which copies the entire pane contents to a paste
buffer. From Jonathan Alvarado.
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 efa93868ba1..669bd1430d3 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.189 2009/11/30 16:44:03 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.190 2009/12/01 18:42:38 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1433,6 +1433,7 @@ extern const struct cmd_entry *cmd_table[]; extern const struct cmd_entry cmd_attach_session_entry; extern const struct cmd_entry cmd_bind_key_entry; extern const struct cmd_entry cmd_break_pane_entry; +extern const struct cmd_entry cmd_capture_pane_entry; extern const struct cmd_entry cmd_choose_client_entry; extern const struct cmd_entry cmd_choose_session_entry; extern const struct cmd_entry cmd_choose_window_entry; |