mirror of
https://github.com/tmux/tmux.git
synced 2024-12-04 11:55:56 +00:00
Bump the escape sequence timeout to five seconds to allow for longer
legitimate sequences.
This commit is contained in:
parent
2349b1dbef
commit
9ea05b2fb3
2
input.c
2
input.c
@ -740,7 +740,7 @@ input_timer_callback(__unused int fd, __unused short events, void *arg)
|
||||
static void
|
||||
input_start_timer(struct input_ctx *ictx)
|
||||
{
|
||||
struct timeval tv = { .tv_usec = 100000 };
|
||||
struct timeval tv = { .tv_sec = 5, .tv_usec = 0 };
|
||||
|
||||
event_del(&ictx->timer);
|
||||
event_add(&ictx->timer, &tv);
|
||||
|
Loading…
Reference in New Issue
Block a user