Rename some bits.

This commit is contained in:
Nicholas Marriott
2007-10-03 12:43:47 +00:00
parent fe06744d66
commit aaa98ab4a2
4 changed files with 30 additions and 29 deletions

8
tmux.c
View File

@ -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])