This commit is contained in:
Kovid Goyal 2020-01-12 21:42:12 +05:30
parent 268de9a9d5
commit e0c66ea5ba
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -127,8 +127,7 @@ def create_modifier_variants(keycode, terminfo_name_or_bytes, add_shifted_key=Tr
control_codes[defines.GLFW_KEY_3] = (27,)
control_codes[defines.GLFW_KEY_4] = (28,)
control_codes[defines.GLFW_KEY_5] = (29,)
control_codes[defines.GLFW_KEY_6] = (30,)
control_codes[defines.GLFW_KEY_CIRCUMFLEX] = (30,)
control_codes[defines.GLFW_KEY_6] = control_codes[defines.GLFW_KEY_CIRCUMFLEX] = (30,)
control_codes[defines.GLFW_KEY_7] = (31,)
control_codes[defines.GLFW_KEY_SLASH] = (31,)
control_codes[defines.GLFW_KEY_8] = (127,)