diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-04 10:11:32 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-04 10:11:32 +0000 |
commit | 57157a1cde3bea69e6cf6f20d39b7ba0b5483b0d (patch) | |
tree | 86953757e57f1ad015b01d6f7175550134d81595 /tmux.h | |
parent | 774b556669dd71908e1b7b781a5945bbaf7aa9a1 (diff) | |
download | rtmux-57157a1cde3bea69e6cf6f20d39b7ba0b5483b0d.tar.gz rtmux-57157a1cde3bea69e6cf6f20d39b7ba0b5483b0d.tar.bz2 rtmux-57157a1cde3bea69e6cf6f20d39b7ba0b5483b0d.zip |
set-option command to set meta.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 */ |