aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2010-01-05 23:52:37 +0000
committerTiago Cunha <tcunha@gmx.com>2010-01-05 23:52:37 +0000
commit106011aa53a739c612aa7c631e5d3f2542f74378 (patch)
tree101a2362cf18174f0703f148cca513d2a0c6d767 /tmux.c
parent97c40b1f376cc79a2a48eac8fe10ae11deaeb828 (diff)
downloadrtmux-106011aa53a739c612aa7c631e5d3f2542f74378.tar.gz
rtmux-106011aa53a739c612aa7c631e5d3f2542f74378.tar.bz2
rtmux-106011aa53a739c612aa7c631e5d3f2542f74378.zip
Sync OpenBSD patchset 597:
Options to set the colour of the pane borders, with different colours for the active pane.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index c321291a..3666d924 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.196 2009-12-16 01:09:01 tcunha Exp $ */
+/* $Id: tmux.c,v 1.197 2010-01-05 23:52:37 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -342,6 +342,10 @@ main(int argc, char **argv)
options_set_number(so, "message-fg", 0);
options_set_number(so, "message-limit", 20);
options_set_number(so, "mouse-select-pane", 0);
+ options_set_number(so, "pane-active-border-bg", 2);
+ options_set_number(so, "pane-active-border-fg", 8);
+ options_set_number(so, "pane-border-bg", 8);
+ options_set_number(so, "pane-border-fg", 8);
options_set_number(so, "repeat-time", 500);
options_set_number(so, "set-remain-on-exit", 0);
options_set_number(so, "set-titles", 0);