aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-08-31 20:46:19 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-08-31 20:46:19 +0000
commit04319964b95304138dbe5cbce0b97222769d0c17 (patch)
tree3d067da0a55da208bbf9dd18d1711d5b165ffcfc /tmux.c
parent8102ec3be55e9800837eeb2f1f9135a433452794 (diff)
downloadrtmux-04319964b95304138dbe5cbce0b97222769d0c17.tar.gz
rtmux-04319964b95304138dbe5cbce0b97222769d0c17.tar.bz2
rtmux-04319964b95304138dbe5cbce0b97222769d0c17.zip
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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tmux.c b/tmux.c
index eab2c2aa..e98d1d9c 100644
--- a/tmux.c
+++ b/tmux.c
@@ -347,6 +347,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);