diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-04 16:11:53 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-04 16:11:53 +0000 |
commit | f7ba4dfdc91eb3121ca070a0706d0ec2dfe502e1 (patch) | |
tree | 78e9505e449bac88830dce4662373b13fa9e2706 /tmux.h | |
parent | 031be1fc7283bd400ff60b216a38fa734415ca15 (diff) | |
download | rtmux-f7ba4dfdc91eb3121ca070a0706d0ec2dfe502e1.tar.gz rtmux-f7ba4dfdc91eb3121ca070a0706d0ec2dfe502e1.tar.bz2 rtmux-f7ba4dfdc91eb3121ca070a0706d0ec2dfe502e1.zip |
Bring select-window into line with everything else wrt -i.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.126 2008-06-04 05:40:35 nicm Exp $ */ +/* $Id: tmux.h,v 1.127 2008-06-04 16:11:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -681,6 +681,22 @@ struct cmd_entry { void (*init)(void **, int); }; +/* Generic command data. */ +struct cmd_clientonly_data { + char *cname; +}; + +struct cmd_sessiononly_data { + char *cname; + char *sname; +}; + +struct cmd_windowonly_data { + char *cname; + char *sname; + int idx; +}; + /* Key binding. */ struct binding { int key; |