diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-04 17:54:27 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-04 17:54:27 +0000 |
commit | 0f95671fe3628671ddc43a960bd69f867799d00a (patch) | |
tree | affc07f0cee6074fc57afd124bb62e43d1bbc0c7 /tmux.h | |
parent | 14b951254674c75d8422a8ac5f320a54d1dd8a48 (diff) | |
download | rtmux-0f95671fe3628671ddc43a960bd69f867799d00a.tar.gz rtmux-0f95671fe3628671ddc43a960bd69f867799d00a.tar.bz2 rtmux-0f95671fe3628671ddc43a960bd69f867799d00a.zip |
Disable/enable window activity monitoring with set-window-option command.
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.128 2008-06-04 16:46:23 nicm Exp $ */ +/* $Id: tmux.h,v 1.129 2008-06-04 17:54:26 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -519,6 +519,7 @@ struct window { #define WINDOW_BELL 0x1 #define WINDOW_HIDDEN 0x2 #define WINDOW_ACTIVITY 0x4 +#define WINDOW_MONITOR 0x8 struct screen *screen; struct screen base; @@ -818,6 +819,7 @@ extern const struct cmd_entry cmd_select_window_entry; extern const struct cmd_entry cmd_send_keys_entry; extern const struct cmd_entry cmd_send_prefix_entry; extern const struct cmd_entry cmd_set_option_entry; +extern const struct cmd_entry cmd_set_window_option_entry; extern const struct cmd_entry cmd_start_server_entry; extern const struct cmd_entry cmd_swap_window_entry; extern const struct cmd_entry cmd_switch_client_entry; |