diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-18 14:59:26 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-18 14:59:26 +0000 |
commit | 3d16afce21fb9ee8da11ed78546f7bb036bafd8e (patch) | |
tree | 128ab1731f6970c4d7ab397c06578025b0901515 /usr.bin/tmux/tmux.h | |
parent | dc48147efb6f662be60d1cf3afaadc27c5c15397 (diff) |
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 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 919a1367679..0cc5ca01fb6 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.37 2009/07/17 20:37:03 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.38 2009/07/18 14:59:25 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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; |