From 290ef8dce59e5ea17d60083f3ade486b5065390f Mon Sep 17 00:00:00 2001 From: Raphael 'kena' Poss Date: Fri, 19 Aug 2022 14:33:12 +0200 Subject: [PATCH] Add missing alt+ variant for F5-F12 on urxvt --- key.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/key.go b/key.go index 5fec78d..6debf36 100644 --- a/key.go +++ b/key.go @@ -503,6 +503,14 @@ var sequences = map[string]Key{ "\x1b\x1b[12~": {Type: KeyF2, Alt: true}, "\x1b\x1b[13~": {Type: KeyF3, Alt: true}, "\x1b\x1b[14~": {Type: KeyF4, Alt: true}, + "\x1b\x1b[15~": {Type: KeyF5, Alt: true}, + "\x1b\x1b[17~": {Type: KeyF6, Alt: true}, + "\x1b\x1b[18~": {Type: KeyF7, Alt: true}, + "\x1b\x1b[19~": {Type: KeyF8, Alt: true}, + "\x1b\x1b[20~": {Type: KeyF9, Alt: true}, + "\x1b\x1b[21~": {Type: KeyF10, Alt: true}, + "\x1b\x1b[23~": {Type: KeyF11, Alt: true}, + "\x1b\x1b[24~": {Type: KeyF12, Alt: true}, "\x1b\x1b[25~": {Type: KeyF13, Alt: true}, "\x1b\x1b[26~": {Type: KeyF14, Alt: true}, "\x1b\x1b[28~": {Type: KeyF15, Alt: true},