mirror of
https://github.com/tmate-io/tmate.git
synced 2025-08-13 23:38:52 +02:00
Bring select-window into line with everything else wrt -i.
This commit is contained in:
18
tmux.h
18
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;
|
||||
|
Reference in New Issue
Block a user