summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-03 12:43:47 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-03 12:43:47 +0000
commitaaa98ab4a2d70014ecae09941f292775d08fa7ee (patch)
tree3f391f5ebf35ec7ea31e8a5040fb14aeaf900018 /tmux.c
parentfe06744d66e66b0b8e3839dbca5791001be5e58d (diff)
Rename some bits.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tmux.c b/tmux.c
index 6b95f993..58ed9f93 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.22 2007-10-03 12:34:16 nicm Exp $ */
+/* $Id: tmux.c,v 1.23 2007-10-03 12:43:47 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -47,11 +47,11 @@ struct op {
};
const struct op op_table[] = {
{ "attach", NULL, op_attach },
+ { "bind-key", "bind", op_bind_key },
{ "list-sessions", "ls", op_list_sessions },
{ "list-windows", "lsw", op_list_windows },
- { "new-session", "new", op_new/*_session*/ },
- { "rename-window", "renw", op_rename },
- { "bind-key", "bind", op_bind_key },
+ { "new-session", "new", op_new_session },
+ { "rename-window", "renw", op_rename_window },
{ "unbind-key", "unbind", op_unbind_key },
};
#define NOP (sizeof op_table / sizeof op_table[0])