Add GLFW_KEY_CIRCUMFLEX to control_codes
See https://github.com/kovidgoyal/kitty/issues/1990.
This commit is contained in:
parent
8c540d5a46
commit
74eb523178
8
kitty/keys.h
generated
8
kitty/keys.h
generated
@ -822,6 +822,8 @@ key_lookup(uint8_t key, KeyboardMode mode, uint8_t mods, uint8_t action) {
|
||||
return "\x01\x1c";
|
||||
case 58: // RIGHT_BRACKET
|
||||
return "\x01\x1d";
|
||||
case 59: // CIRCUMFLEX
|
||||
return "\x01\x1e";
|
||||
case 60: // UNDERSCORE
|
||||
return "\x01\x00";
|
||||
case 61: // GRAVE_ACCENT
|
||||
@ -2487,6 +2489,8 @@ key_lookup(uint8_t key, KeyboardMode mode, uint8_t mods, uint8_t action) {
|
||||
return "\x01\x1c";
|
||||
case 58: // RIGHT_BRACKET
|
||||
return "\x01\x1d";
|
||||
case 59: // CIRCUMFLEX
|
||||
return "\x01\x1e";
|
||||
case 60: // UNDERSCORE
|
||||
return "\x01\x00";
|
||||
case 61: // GRAVE_ACCENT
|
||||
@ -4161,6 +4165,8 @@ key_lookup(uint8_t key, KeyboardMode mode, uint8_t mods, uint8_t action) {
|
||||
return "\x01\x1c";
|
||||
case 58: // RIGHT_BRACKET
|
||||
return "\x01\x1d";
|
||||
case 59: // CIRCUMFLEX
|
||||
return "\x01\x1e";
|
||||
case 60: // UNDERSCORE
|
||||
return "\x01\x00";
|
||||
case 61: // GRAVE_ACCENT
|
||||
@ -5826,6 +5832,8 @@ key_lookup(uint8_t key, KeyboardMode mode, uint8_t mods, uint8_t action) {
|
||||
return "\x01\x1c";
|
||||
case 58: // RIGHT_BRACKET
|
||||
return "\x01\x1d";
|
||||
case 59: // CIRCUMFLEX
|
||||
return "\x01\x1e";
|
||||
case 60: // UNDERSCORE
|
||||
return "\x01\x00";
|
||||
case 61: // GRAVE_ACCENT
|
||||
|
||||
@ -128,6 +128,7 @@ 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_7] = (31,)
|
||||
control_codes[defines.GLFW_KEY_SLASH] = (31,)
|
||||
control_codes[defines.GLFW_KEY_8] = (127,)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user