summaryrefslogtreecommitdiffstats
path: root/key-bindings.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-01-12 19:23:14 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-01-12 19:23:14 +0000
commitc35a50b21adc08b0b9798fec759cf47580e60d68 (patch)
tree16d79d30f5411a71431331c0b97560a8e2ec3bed /key-bindings.c
parent7cd3cf0eada8513907cd1cc78d7669752235f419 (diff)
Commands to resize panes; also a pane generic cmd, not used yet.
Diffstat (limited to 'key-bindings.c')
-rw-r--r--key-bindings.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/key-bindings.c b/key-bindings.c
index b4084526..60b223f4 100644
--- a/key-bindings.c
+++ b/key-bindings.c
@@ -1,4 +1,4 @@
-/* $Id: key-bindings.c,v 1.43 2009-01-11 23:31:46 nicm Exp $ */
+/* $Id: key-bindings.c,v 1.44 2009-01-12 19:23:14 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -107,6 +107,8 @@ key_bindings_init(void)
{ 's', &cmd_list_sessions_entry },
{ 't', &cmd_clock_mode_entry },
{ 'w', &cmd_list_windows_entry },
+ { KEYC_ADDCTL(KEYC_UP), &cmd_resize_pane_up_entry },
+ { KEYC_ADDCTL(KEYC_DOWN), &cmd_resize_pane_down_entry },
{ META, &cmd_send_prefix_entry },
};
u_int i;