diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-04-28 18:22:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-04-28 18:22:33 +0000 |
commit | 7da984f93e47d3c361dd71ed89581c613ab4c85e (patch) | |
tree | 4b7e489a033afe452d520fb4c222ab4807f90aaa /usr.bin/tmux/tmux.c | |
parent | 825c9d371423c01e39a068dbf06ff95e3faeca12 (diff) |
Make the active pane border have a green foreground instead of
background by default.
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r-- | usr.bin/tmux/tmux.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index e0a77c29bc1..1af7849c447 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.74 2010/04/18 13:41:29 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.75 2010/04/28 18:22:32 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -355,8 +355,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); |