mirror of
https://github.com/tmux/tmux.git
synced 2025-01-12 19:39:04 +00:00
Process ^[ as meta when a partial key is found.
This commit is contained in:
parent
7f191c7951
commit
c7d1849e1c
@ -498,6 +498,7 @@ tty_keys_next(struct tty *tty)
|
||||
goto complete_key;
|
||||
}
|
||||
|
||||
first_key:
|
||||
/* Is this a meta key? */
|
||||
if (len >= 2 && buf[0] == '\033') {
|
||||
if (buf[1] != '\033') {
|
||||
@ -518,7 +519,6 @@ tty_keys_next(struct tty *tty)
|
||||
}
|
||||
}
|
||||
|
||||
first_key:
|
||||
/* No key found, take first. */
|
||||
key = (u_char) *buf;
|
||||
size = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user