From 7e4f8b45b64b0cbe889c5846806038c4c45c36e8 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 3 Jan 2010 12:51:05 +0000 Subject: Options to set the colour of the pane borders, with different colours for the active pane. --- tmux.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index 0e080306..24aa24f6 100644 --- a/tmux.c +++ b/tmux.c @@ -339,6 +339,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