aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-08-16 19:16:27 +0000
committerTiago Cunha <tcunha@gmx.com>2009-08-16 19:16:27 +0000
commite61ee94e26a82479b5de2ed4c1686625ea5d078d (patch)
treeb30a1f1c63e3cf956c73ec161d90999e7953b187 /tmux.c
parent9116905b24ff6ee585f42295b302812aad853ff1 (diff)
downloadrtmux-e61ee94e26a82479b5de2ed4c1686625ea5d078d.tar.gz
rtmux-e61ee94e26a82479b5de2ed4c1686625ea5d078d.tar.bz2
rtmux-e61ee94e26a82479b5de2ed4c1686625ea5d078d.zip
Sync OpenBSD patchset 257:
Add a base-index session option to specify the first index checked when looking for an index for a new window.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index f707e8d1..9a35e7f6 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.161 2009-08-14 21:28:00 tcunha Exp $ */
+/* $Id: tmux.c,v 1.162 2009-08-16 19:16:27 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -351,6 +351,7 @@ main(int argc, char **argv)
}
options_init(&global_s_options, NULL);
+ options_set_number(&global_s_options, "base-index", 0);
options_set_number(&global_s_options, "bell-action", BELL_ANY);
options_set_number(&global_s_options, "buffer-limit", 9);
options_set_string(&global_s_options, "default-command", "%s", "");