diff options
author | peter <peter@FreeBSD.org> | 1996-12-30 15:51:51 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-12-30 15:51:51 +0000 |
commit | 186f121fd6fba4ebaac88a5c25d4969e09c975c2 (patch) | |
tree | e3bb00f9b8bd052049ca81b7eacdc1eb3165484a /contrib/nvi | |
parent | 76162281a2cdd31a9af75ec13601530bbeadb55e (diff) | |
download | FreeBSD-src-186f121fd6fba4ebaac88a5c25d4969e09c975c2.zip FreeBSD-src-186f121fd6fba4ebaac88a5c25d4969e09c975c2.tar.gz |
Bump default escapetime from 1 (ie: 100ms) to 3 (ie: 300ms). Hopefully
this will make it less likely to misinterpret arrow keys as seperate
keys when running over anything slower than a console.
This has been talked about for a while, I hope it's long enough but not
too long to be annoying.
Diffstat (limited to 'contrib/nvi')
-rw-r--r-- | contrib/nvi/common/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/nvi/common/options.c b/contrib/nvi/common/options.c index 973778c..85d77cb 100644 --- a/contrib/nvi/common/options.c +++ b/contrib/nvi/common/options.c @@ -341,7 +341,7 @@ opts_init(sp, oargs) (void)snprintf(b1, sizeof(b1), "directory=%s", (s = getenv("TMPDIR")) == NULL ? _PATH_TMP : s); OI(O_DIRECTORY, b1); - OI(O_ESCAPETIME, "escapetime=1"); + OI(O_ESCAPETIME, "escapetime=3"); OI(O_KEYTIME, "keytime=6"); OI(O_MATCHTIME, "matchtime=7"); (void)snprintf(b1, sizeof(b1), "msgcat=%s", _PATH_MSGCAT); |