diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-04 10:54:21 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-04 10:54:21 +0000 |
commit | 225e07fe38ecf4755cdcd38664d82a5611c0b5ac (patch) | |
tree | 8c79d3fab479339de88b0275a386805fee4fa166 /tmux.h | |
parent | 19c1e1a800da9bee277f3db619262a0c2ce3fbc7 (diff) | |
download | rtmux-225e07fe38ecf4755cdcd38664d82a5611c0b5ac.tar.gz rtmux-225e07fe38ecf4755cdcd38664d82a5611c0b5ac.tar.bz2 rtmux-225e07fe38ecf4755cdcd38664d82a5611c0b5ac.zip |
Select window command.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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; |