Reduce escape-time default to 10 milliseconds, 500 is far too long for

modern terminals and networks. Case made by Kurtis Rader in GitHub issue
3844.
This commit is contained in:
nicm
2024-03-21 11:53:11 +00:00
parent d8ddeec7db
commit 2e9d7ebf15
2 changed files with 10 additions and 5 deletions

View File

@ -286,7 +286,7 @@ const struct options_table_entry options_table[] = {
.scope = OPTIONS_TABLE_SERVER,
.minimum = 0,
.maximum = INT_MAX,
.default_num = 500,
.default_num = 10,
.unit = "milliseconds",
.text = "Time to wait before assuming a key is Escape."
},