mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-20 15:35:03 +02:00
Fix Ctrl+Alt+Space not working in normal and application keyboard modes.
Fixes #562
This commit is contained in:
@@ -49,7 +49,9 @@ SHIFTED_KEYS = {
|
||||
defines.GLFW_KEY_DOWN: key_as_bytes('kind'),
|
||||
}
|
||||
|
||||
control_alt_codes = {}
|
||||
control_alt_codes = {
|
||||
defines.GLFW_KEY_SPACE: b'\x1b\0',
|
||||
}
|
||||
|
||||
for kf, kn in {
|
||||
defines.GLFW_KEY_UP: 'kcuu1',
|
||||
|
||||
Reference in New Issue
Block a user