Fix F1, F2, F3, F4 on rxvt-unicode

Tested on urxvt.
Fix #1799.
pull/1297/head^2
Junegunn Choi 4 years ago
parent 6e3af646b2
commit 7771241cc0
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

@ -486,10 +486,18 @@ func (r *LightRenderer) escSequence(sz *int) Event {
switch r.buffer[3] {
case 126:
return Event{Home, 0, nil}
case 53, 55, 56, 57:
case 49, 50, 51, 52, 53, 55, 56, 57:
if len(r.buffer) == 5 && r.buffer[4] == 126 {
*sz = 5
switch r.buffer[3] {
case 49:
return Event{F1, 0, nil}
case 50:
return Event{F2, 0, nil}
case 51:
return Event{F3, 0, nil}
case 52:
return Event{F4, 0, nil}
case 53:
return Event{F5, 0, nil}
case 55:

Loading…
Cancel
Save