From 106011aa53a739c612aa7c631e5d3f2542f74378 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Tue, 5 Jan 2010 23:52:37 +0000 Subject: Sync OpenBSD patchset 597: Options to set the colour of the pane borders, with different colours for the active pane. --- tmux.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tmux.c') 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 @@ -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); -- cgit