aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-20 09:15:18 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-20 09:15:18 +0000
commite32e0d569294ca7162f197cc7c369cd57050b193 (patch)
tree809904a7a07925d9e8400f6ec0ad0846ad597297 /tmux.c
parent73732ffa0585faacb53b6f7bb9f741c54251dd6d (diff)
downloadrtmux-e32e0d569294ca7162f197cc7c369cd57050b193.tar.gz
rtmux-e32e0d569294ca7162f197cc7c369cd57050b193.tar.bz2
rtmux-e32e0d569294ca7162f197cc7c369cd57050b193.zip
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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tmux.c b/tmux.c
index 5cca15f6..915bb432 100644
--- a/tmux.c
+++ b/tmux.c
@@ -338,6 +338,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);