diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-05-14 19:03:10 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-05-14 19:03:10 +0000 |
commit | 814c6aad57efaa0c5533677df68cfa3aea701320 (patch) | |
tree | e797b0c5ed8c44c83e3ba84935a1535b238d49af /usr.bin/tmux/cmd-set-option.c | |
parent | ae5d956c931b1909156c358448aa831cb1f03651 (diff) |
Colour+attribute options for status line alerts, from Alex Alexander.
Diffstat (limited to 'usr.bin/tmux/cmd-set-option.c')
-rw-r--r-- | usr.bin/tmux/cmd-set-option.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd-set-option.c b/usr.bin/tmux/cmd-set-option.c index 3751c02ebc8..a5d5d408f3d 100644 --- a/usr.bin/tmux/cmd-set-option.c +++ b/usr.bin/tmux/cmd-set-option.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-set-option.c,v 1.35 2010/02/22 20:41:16 nicm Exp $ */ +/* $OpenBSD: cmd-set-option.c,v 1.36 2010/05/14 19:03:09 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -157,6 +157,9 @@ const struct set_option_entry set_window_option_table[] = { { "remain-on-exit", SET_OPTION_FLAG, 0, 0, NULL }, { "synchronize-panes", SET_OPTION_FLAG, 0, 0, NULL }, { "utf8", SET_OPTION_FLAG, 0, 0, NULL }, + { "window-status-alert-attr", SET_OPTION_ATTRIBUTES, 0, 0, NULL }, + { "window-status-alert-bg", SET_OPTION_COLOUR, 0, 0, NULL }, + { "window-status-alert-fg", SET_OPTION_COLOUR, 0, 0, NULL }, { "window-status-attr", SET_OPTION_ATTRIBUTES, 0, 0, NULL }, { "window-status-bg", SET_OPTION_COLOUR, 0, 0, NULL }, { "window-status-current-attr", SET_OPTION_ATTRIBUTES, 0, 0, NULL }, |