Skip to content
Snippets Groups Projects
Unverified Commit 7771241c authored by Junegunn Choi's avatar Junegunn Choi
Browse files

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

Tested on urxvt.
Fix #1799.
parent 6e3af646
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment