Select window command.

This commit is contained in:
Nicholas Marriott
2007-10-04 10:54:21 +00:00
parent 19c1e1a800
commit 225e07fe38
8 changed files with 190 additions and 34 deletions

5
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.44 2007-10-04 10:39:07 nicm Exp $ */
/* $Id: tmux.h,v 1.45 2007-10-04 10:54:21 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -467,6 +467,7 @@ enum cmd_type {
CMD_NEXTWINDOW,
CMD_PREVIOUSWINDOW,
CMD_RENAMEWINDOW,
CMD_SELECTWINDOW,
CMD_SETOPTION,
CMD_UNBINDKEY,
};
@ -541,6 +542,8 @@ extern const struct cmd_entry cmd_new_window_entry;
extern const struct cmd_entry cmd_next_window_entry;
extern const struct cmd_entry cmd_previous_window_entry;
extern const struct cmd_entry cmd_rename_window_entry;
extern const struct cmd_entry cmd_select_window_entry;
void cmd_select_window_default(void **, int);
extern const struct cmd_entry cmd_set_option_entry;
extern const struct cmd_entry cmd_unbind_key_entry;