aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-08-31 22:30:15 +0000
committerTiago Cunha <tcunha@gmx.com>2009-08-31 22:30:15 +0000
commited3535db8a5dac03cab96f7fc220b99095423fd0 (patch)
treeedbf02a4b364a56d0d58b1665fdca029acb1bd61 /tmux.c
parent2fe369831ce005827ff10dafe80532ff18c57641 (diff)
downloadrtmux-ed3535db8a5dac03cab96f7fc220b99095423fd0.tar.gz
rtmux-ed3535db8a5dac03cab96f7fc220b99095423fd0.tar.bz2
rtmux-ed3535db8a5dac03cab96f7fc220b99095423fd0.zip
Sync OpenBSD patchset 302:
Add a new display-panes command, with two options (display-panes-colour and display-panes-time), which displays a visual indication of the number of each pane.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index 649501ef..f9283a70 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.164 2009-08-24 16:35:24 tcunha Exp $ */
+/* $Id: tmux.c,v 1.165 2009-08-31 22:30:15 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -356,6 +356,8 @@ main(int argc, char **argv)
options_set_number(&global_s_options, "buffer-limit", 9);
options_set_string(&global_s_options, "default-command", "%s", "");
options_set_string(&global_s_options, "default-terminal", "screen");
+ options_set_number(&global_s_options, "display-panes-colour", 4);
+ options_set_number(&global_s_options, "display-panes-time", 1000);
options_set_number(&global_s_options, "display-time", 750);
options_set_number(&global_s_options, "history-limit", 2000);
options_set_number(&global_s_options, "lock-after-time", 0);