diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-07-19 14:35:56 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-07-19 14:35:56 +0000 |
commit | 376c808b503dbee0991b5eb4027ca6e4f4ece702 (patch) | |
tree | 20bca8cda47aa9f12c2908a3629c4e1e3ffc7478 /tmux.h | |
parent | 4cf6396e4cebf12b9d24cd23bd4246e6f6f1c1ba (diff) | |
download | rtmux-376c808b503dbee0991b5eb4027ca6e4f4ece702.tar.gz rtmux-376c808b503dbee0991b5eb4027ca6e4f4ece702.tar.bz2 rtmux-376c808b503dbee0991b5eb4027ca6e4f4ece702.zip |
Add three new session options: visual-activity, visual-bell, visual-content.
If these are enabled (and the monitor-activity, bell-action 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.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.371 2009-07-18 11:07:14 nicm Exp $ */ +/* $Id: tmux.h,v 1.372 2009-07-19 14:35:56 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -643,8 +643,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; |