diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-27 10:09:37 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-27 10:09:37 +0000 |
commit | 58affec94cc485395b99964fff5c13602f8a8f3b (patch) | |
tree | 060a9dd35ce93769dfac8358cfdb2496140c5423 /tmux.h | |
parent | 22990a6595fdff840010aa6df9a60ada61331b5e (diff) | |
download | rtmux-58affec94cc485395b99964fff5c13602f8a8f3b.tar.gz rtmux-58affec94cc485395b99964fff5c13602f8a8f3b.tar.bz2 rtmux-58affec94cc485395b99964fff5c13602f8a8f3b.zip |
Split list into ls/lsw.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.17 2007-09-27 09:52:03 nicm Exp $ */ +/* $Id: tmux.h,v 1.18 2007-09-27 10:09:37 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -450,7 +450,8 @@ int op_new(char *, int, char **); int op_attach(char *, int, char **); /* op-list.c */ -int op_list(char *, int, char **); +int op_list_sessions(char *, int, char **); +int op_list_windows(char *, int, char **); /* client.c */ int client_init(char *, struct client_ctx *, int); |