aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-04 16:11:53 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-04 16:11:53 +0000
commitf7ba4dfdc91eb3121ca070a0706d0ec2dfe502e1 (patch)
tree78e9505e449bac88830dce4662373b13fa9e2706 /tmux.h
parent031be1fc7283bd400ff60b216a38fa734415ca15 (diff)
downloadrtmux-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.h18
1 files changed, 17 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 1e6c5759..38f25910 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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;