From 354926a956ba07ef38d2ddd91a7820e3c9634ab0 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). --- options-table.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/options-table.c b/options-table.c index 2ac552a6..014e97f1 100644 --- a/options-table.c +++ b/options-table.c @@ -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 "