summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/cmd.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2009-12-01 18:42:39 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2009-12-01 18:42:39 +0000
commitbaf81185692d7126104116315f87b9b485d36a99 (patch)
tree30973ef97241a232cdee7f325aa040a93a1ac73f /usr.bin/tmux/cmd.c
parent6edf83765acea0cf39651984ded48f7dddcf8a9a (diff)
New command, capture-pane, which copies the entire pane contents to a paste
buffer. From Jonathan Alvarado.
Diffstat (limited to 'usr.bin/tmux/cmd.c')
-rw-r--r--usr.bin/tmux/cmd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd.c b/usr.bin/tmux/cmd.c
index 2fd5eb0029a..4da9e1f7ccc 100644
--- a/usr.bin/tmux/cmd.c
+++ b/usr.bin/tmux/cmd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd.c,v 1.33 2009/11/21 17:52:18 nicm Exp $ */
+/* $OpenBSD: cmd.c,v 1.34 2009/12/01 18:42:38 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -31,6 +31,7 @@ const struct cmd_entry *cmd_table[] = {
&cmd_attach_session_entry,
&cmd_bind_key_entry,
&cmd_break_pane_entry,
+ &cmd_capture_pane_entry,
&cmd_choose_client_entry,
&cmd_choose_session_entry,
&cmd_choose_window_entry,