aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2010-05-14 14:18:54 +0000
committerTiago Cunha <tcunha@gmx.com>2010-05-14 14:18:54 +0000
commit50cad52ae663ebed4a7e41b20b4ca69e07689a29 (patch)
tree9b83d348abed9a0ca582f4459af879bf8017d316
parent701b5bdf616c450cf353b90edf5b4a8f73486896 (diff)
downloadrtmux-50cad52ae663ebed4a7e41b20b4ca69e07689a29.tar.gz
rtmux-50cad52ae663ebed4a7e41b20b4ca69e07689a29.tar.bz2
rtmux-50cad52ae663ebed4a7e41b20b4ca69e07689a29.zip
Sync OpenBSD patchset 691:
Make the active pane border have a green foreground instead of background by default.
-rw-r--r--tmux.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmux.c b/tmux.c
index 4fd38368..210881f0 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.205 2010-04-22 21:48:49 tcunha Exp $ */
+/* $Id: tmux.c,v 1.206 2010-05-14 14:18:54 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -358,8 +358,8 @@ 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-active-border-bg", 8);
+ options_set_number(so, "pane-active-border-fg", 2);
options_set_number(so, "pane-border-bg", 8);
options_set_number(so, "pane-border-fg", 8);
options_set_number(so, "repeat-time", 500);