From 169573fcb140de0976e7261776daa32cff3f2002 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 21 Oct 2024 12:42:06 +0000 Subject: [PATCH] Bump up the maximum for repeat-time (some people want it to be effectively infinite). --- usr.bin/tmux/options-table.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index 44c4506df13..5e729af7d74 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.182 2024/10/07 12:58:36 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.183 2024/10/21 12:42:06 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott @@ -577,7 +577,7 @@ const struct options_table_entry options_table[] = { .type = OPTIONS_TABLE_NUMBER, .scope = OPTIONS_TABLE_SESSION, .minimum = 0, - .maximum = 10000, + .maximum = 2000000, .default_num = 0, .unit = "milliseconds", .text = "Time to wait for a key binding to repeat the first time the " @@ -672,7 +672,7 @@ const struct options_table_entry options_table[] = { .type = OPTIONS_TABLE_NUMBER, .scope = OPTIONS_TABLE_SESSION, .minimum = 0, - .maximum = 10000, + .maximum = 2000000, .default_num = 500, .unit = "milliseconds", .text = "Time to wait for a key binding to repeat, if it is bound " -- 2.20.1