aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-04 17:54:27 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-04 17:54:27 +0000
commit0f95671fe3628671ddc43a960bd69f867799d00a (patch)
treeaffc07f0cee6074fc57afd124bb62e43d1bbc0c7 /tmux.h
parent14b951254674c75d8422a8ac5f320a54d1dd8a48 (diff)
downloadrtmux-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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 8f5582ba..3c0cdafe 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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;