summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-09-27 10:09:37 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-09-27 10:09:37 +0000
commit58affec94cc485395b99964fff5c13602f8a8f3b (patch)
tree060a9dd35ce93769dfac8358cfdb2496140c5423 /tmux.c
parent22990a6595fdff840010aa6df9a60ada61331b5e (diff)
Split list into ls/lsw.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index 56845b7f..ecea49c6 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.14 2007-09-27 09:15:58 nicm Exp $ */
+/* $Id: tmux.c,v 1.15 2007-09-27 10:09:37 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -45,8 +45,10 @@ struct op {
};
struct op op_table[] = {
{ "attach", NULL, op_attach },
- { "list-sessions", "ls", op_list/*_sessions*/ },
+ { "list-sessions", "ls", op_list_sessions },
+ { "list-windows", "lsw", op_list_windows },
{ "new-session", "new", op_new/*_session*/ },
+// { "new-window", "neww", op_new_window },
// { "rename-window", "rw", op_rename_window },
// { "rename-session", "rs", op_rename_session },
};