summaryrefslogtreecommitdiffstats
path: root/key-bindings.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-03-07 09:29:54 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-03-07 09:29:54 +0000
commit56f80a5b09ce98e3bdbef5c3e24fd092e55ed33f (patch)
tree738f7054a872d1330329f29189b137107d2aa864 /key-bindings.c
parent8a6a7e74da70400cc98e7596c7d9d19848ca3aa1 (diff)
break-pane command to split a pane off into a new window; bound to ! by default.
Diffstat (limited to 'key-bindings.c')
-rw-r--r--key-bindings.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/key-bindings.c b/key-bindings.c
index 5f3c9b16..3b024d47 100644
--- a/key-bindings.c
+++ b/key-bindings.c
@@ -1,4 +1,4 @@
-/* $Id: key-bindings.c,v 1.61 2009-02-13 20:19:30 nicm Exp $ */
+/* $Id: key-bindings.c,v 1.62 2009-03-07 09:29:54 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -77,12 +77,13 @@ key_bindings_init(void)
int key;
const struct cmd_entry *entry;
} table[] = {
+ { '!', &cmd_break_pane_entry },
{ '"', &cmd_split_window_entry },
{ '#', &cmd_list_buffers_entry },
{ '&', &cmd_kill_window_entry },
{ ',', &cmd_command_prompt_entry },
- { '.', &cmd_command_prompt_entry },
{ '-', &cmd_delete_buffer_entry },
+ { '.', &cmd_command_prompt_entry },
{ '0', &cmd_select_window_entry },
{ '1', &cmd_select_window_entry },
{ '2', &cmd_select_window_entry },