set-option command to set meta.

This commit is contained in:
Nicholas Marriott
2007-10-04 10:11:32 +00:00
parent 774b556669
commit 57157a1cde
10 changed files with 186 additions and 24 deletions

4
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.42 2007-10-04 09:30:53 nicm Exp $ */
/* $Id: tmux.h,v 1.43 2007-10-04 10:11:32 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -466,6 +466,7 @@ enum cmd_type {
CMD_NEWWINDOW,
CMD_NEXTWINDOW,
CMD_PREVIOUSWINDOW,
CMD_SETOPTION,
CMD_UNBINDKEY,
};
@ -538,6 +539,7 @@ extern const struct cmd_entry cmd_new_session_entry;
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_set_option_entry;
extern const struct cmd_entry cmd_unbind_key_entry;
/* client.c */