summaryrefslogtreecommitdiffstats
path: root/key-bindings.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-04-27 13:21:16 +0000
committerTiago Cunha <tcunha@gmx.com>2009-04-27 13:21:16 +0000
commit058772e4e6277b4a07586c68ca5af06a90fdd340 (patch)
tree150e9a90af0782072367ae23ccb710e02f0b909d /key-bindings.c
parent7d6896ae792a26afb9204a3dc0d52c6c1a72cd59 (diff)
- confirm-before command.
- Bound "&" and "x" by default to confirm-before "kill-window" and confirm-before "kill-pane", respectively.
Diffstat (limited to 'key-bindings.c')
-rw-r--r--key-bindings.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/key-bindings.c b/key-bindings.c
index 5ecd3a98..163551b6 100644
--- a/key-bindings.c
+++ b/key-bindings.c
@@ -1,4 +1,4 @@
-/* $Id: key-bindings.c,v 1.66 2009-04-03 17:21:46 nicm Exp $ */
+/* $Id: key-bindings.c,v 1.67 2009-04-27 13:21:15 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -83,7 +83,7 @@ key_bindings_init(void)
{ '!', 0, &cmd_break_pane_entry },
{ '"', 0, &cmd_split_window_entry },
{ '#', 0, &cmd_list_buffers_entry },
- { '&', 0, &cmd_kill_window_entry },
+ { '&', 0, &cmd_confirm_before_entry },
{ ',', 0, &cmd_command_prompt_entry },
{ '-', 0, &cmd_delete_buffer_entry },
{ '.', 0, &cmd_command_prompt_entry },
@@ -115,7 +115,7 @@ key_bindings_init(void)
{ 's', 0, &cmd_choose_session_entry },
{ 't', 0, &cmd_clock_mode_entry },
{ 'w', 0, &cmd_choose_window_entry },
- { 'x', 0, &cmd_kill_pane_entry, },
+ { 'x', 0, &cmd_confirm_before_entry },
{ '{', 0, &cmd_swap_pane_entry },
{ '}', 0, &cmd_swap_pane_entry },
{ META, 0, &cmd_send_prefix_entry },