diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-11-14 16:23:24 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-11-14 16:23:24 +0000 |
commit | 86ec42e7d20d27b4176611b9a718a50ead654f48 (patch) | |
tree | 2be673e59853badf5f83260c9be08859475fe634 /usr.bin/tmux/options-table.c | |
parent | 2bb463f781352ecbb61d2ada1ca14af23ecb0ba0 (diff) |
Change window-size default from smallest to latest.
Diffstat (limited to 'usr.bin/tmux/options-table.c')
-rw-r--r-- | usr.bin/tmux/options-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index 1f3830a2b0a..333d78c8bb8 100644 --- a/usr.bin/tmux/options-table.c +++ b/usr.bin/tmux/options-table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options-table.c,v 1.112 2019/11/14 07:55:01 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.113 2019/11/14 16:23:23 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -730,7 +730,7 @@ const struct options_table_entry options_table[] = { .type = OPTIONS_TABLE_CHOICE, .scope = OPTIONS_TABLE_WINDOW, .choices = options_table_window_size_list, - .default_num = WINDOW_SIZE_SMALLEST + .default_num = WINDOW_SIZE_LATEST }, { .name = "window-style", |