diff options
author | 2010-04-28 18:22:32 +0000 | |
---|---|---|
committer | 2010-04-28 18:22:32 +0000 | |
commit | 973963a679201a3edae008be2e38315b84bb4512 (patch) | |
tree | fb4bc3e0a1dce1a013f55e99852ba57757eafce5 /usr.bin/tmux/tmux.c | |
parent | Rename nfiles so as not to collide with sys/file.h, (diff) | |
download | wireguard-openbsd-973963a679201a3edae008be2e38315b84bb4512.tar.xz wireguard-openbsd-973963a679201a3edae008be2e38315b84bb4512.zip |
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); |