mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Support the application escape sequence mintty (means tmux doesn't have
to delay to wait for Escape).
This commit is contained in:
2
tty.c
2
tty.c
@ -340,6 +340,7 @@ tty_start_tty(struct tty *tty)
|
||||
tty->flags |= TTY_FOCUS;
|
||||
tty_puts(tty, "\033[?1004h");
|
||||
}
|
||||
tty_puts(tty, "\033[?7727h");
|
||||
}
|
||||
|
||||
evtimer_set(&tty->start_timer, tty_start_timer_callback, tty);
|
||||
@ -426,6 +427,7 @@ tty_stop_tty(struct tty *tty)
|
||||
tty->flags &= ~TTY_FOCUS;
|
||||
tty_raw(tty, "\033[?1004l");
|
||||
}
|
||||
tty_raw(tty, "\033[?7727l");
|
||||
}
|
||||
|
||||
if (tty_use_margin(tty))
|
||||
|
Reference in New Issue
Block a user