diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-03 12:43:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-03 12:43:47 +0000 |
commit | aaa98ab4a2d70014ecae09941f292775d08fa7ee (patch) | |
tree | 3f391f5ebf35ec7ea31e8a5040fb14aeaf900018 /tmux.c | |
parent | fe06744d66e66b0b8e3839dbca5791001be5e58d (diff) | |
download | rtmux-aaa98ab4a2d70014ecae09941f292775d08fa7ee.tar.gz rtmux-aaa98ab4a2d70014ecae09941f292775d08fa7ee.tar.bz2 rtmux-aaa98ab4a2d70014ecae09941f292775d08fa7ee.zip |
Rename some bits.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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]) |