aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-18 14:59:25 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-18 14:59:25 +0000
commitfc6a65c6207dbefcd8b5f187148978f8d4111b2b (patch)
tree44ab21ea7bf632204830ed4e5516f89dae756dbe /tmux.h
parent0ca6f667e3e6f26e92db01ee2a769d0ba49509ca (diff)
downloadrtmux-fc6a65c6207dbefcd8b5f187148978f8d4111b2b.tar.gz
rtmux-fc6a65c6207dbefcd8b5f187148978f8d4111b2b.tar.bz2
rtmux-fc6a65c6207dbefcd8b5f187148978f8d4111b2b.zip
Add three new session options: visual-activity, visual-bell, visual-content. If
these are enabled (and the monitor-activity, bell-actio and monitor-content options are configurated appropriately), when activity, a bell, or content is detected, a message is shown. Also tidy up the bell/activity/content code in server.c slightly and fix a couple of errors.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index d6bfcc4b..62c399f3 100644
--- a/tmux.h
+++ b/tmux.h
@@ -644,8 +644,8 @@ struct window {
#define WINDOW_BELL 0x1
#define WINDOW_HIDDEN 0x2
#define WINDOW_ACTIVITY 0x4
-#define WINDOW_CONTENT 0x6
-#define WINDOW_REDRAW 0x8
+#define WINDOW_CONTENT 0x8
+#define WINDOW_REDRAW 0x10
struct options options;