New server option, escape-time, to set the timeout used to detect if escapes

are alone or part of a function key or meta sequence.
This commit is contained in:
Nicholas Marriott
2009-12-14 10:43:41 +00:00
parent 3f58cbaae9
commit 30962cb200
5 changed files with 15 additions and 9 deletions

1
tmux.c
View File

@ -317,6 +317,7 @@ main(int argc, char **argv)
options_init(&global_options, NULL);
oo = &global_options;
options_set_number(oo, "quiet", quiet);
options_set_number(oo, "escape-time", 500);
options_init(&global_s_options, NULL);
so = &global_s_options;