diff options
author | Tiago Cunha <tcunha@gmx.com> | 2010-05-14 14:18:54 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2010-05-14 14:18:54 +0000 |
commit | 50cad52ae663ebed4a7e41b20b4ca69e07689a29 (patch) | |
tree | 9b83d348abed9a0ca582f4459af879bf8017d316 | |
parent | 701b5bdf616c450cf353b90edf5b4a8f73486896 (diff) | |
download | rtmux-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |