aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-07-20 15:57:05 +0000
committerTiago Cunha <tcunha@gmx.com>2009-07-20 15:57:05 +0000
commite8957009c7766fae83e892c3606b4d163db35b7e (patch)
tree9327dfeb71a8868bbd5a18305f95b70186834fc0 /tmux.c
parent62017452e958cd6fad19d5ca9c7eb56b63bf90a0 (diff)
downloadrtmux-e8957009c7766fae83e892c3606b4d163db35b7e.tar.gz
rtmux-e8957009c7766fae83e892c3606b4d163db35b7e.tar.bz2
rtmux-e8957009c7766fae83e892c3606b4d163db35b7e.zip
Sync OpenBSD patchset 146:
New options, window-status-current-{fg,bg,attr}, to set the fg, bg and attributes with which the current window is shown in the status line. From Johan Friis, thanks.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index 048f5b65..66b87516 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.144 2009-07-19 14:35:56 tcunha Exp $ */
+/* $Id: tmux.c,v 1.145 2009-07-20 15:57:05 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -347,6 +347,9 @@ main(int argc, char **argv)
options_set_number(&global_w_options, "window-status-attr", 0);
options_set_number(&global_w_options, "window-status-bg", 8);
options_set_number(&global_w_options, "window-status-fg", 8);
+ options_set_number(&global_w_options, "window-status-current-attr", 0);
+ options_set_number(&global_w_options, "window-status-current-bg", 8);
+ options_set_number(&global_w_options, "window-status-current-fg", 8);
options_set_number(&global_w_options, "xterm-keys", 0);
options_set_number(&global_w_options, "remain-on-exit", 0);