From 82ba7e69ec7386490a98cba8b54acb36f3691f0e Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Fri, 5 Feb 2010 01:31:06 +0000 Subject: Sync OpenBSD patchset 632: Option to display the active pane in a different colour with the display-panes command. From Paul Hoffman, thanks. --- tmux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index 3666d924..a82e5af6 100644 --- a/tmux.c +++ b/tmux.c @@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.197 2010-01-05 23:52:37 tcunha Exp $ */ +/* $Id: tmux.c,v 1.198 2010-02-05 01:31:06 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -331,6 +331,7 @@ main(int argc, char **argv) options_set_string(so, "default-shell", "%s", getshell()); options_set_string(so, "default-terminal", "screen"); options_set_number(so, "display-panes-colour", 4); + options_set_number(so, "display-panes-active-colour", 1); options_set_number(so, "display-panes-time", 1000); options_set_number(so, "display-time", 750); options_set_number(so, "history-limit", 2000); -- cgit