mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-06 16:05:05 +02:00
Fix #2279
This commit is contained in:
@@ -120,10 +120,8 @@ control_codes.update({
|
||||
for i, k in
|
||||
enumerate(range(defines.GLFW_KEY_A, defines.GLFW_KEY_RIGHT_BRACKET + 1))
|
||||
})
|
||||
control_codes[defines.GLFW_KEY_GRAVE_ACCENT] = (0,)
|
||||
control_codes[defines.GLFW_KEY_UNDERSCORE] = (0,)
|
||||
control_codes[defines.GLFW_KEY_SPACE] = (0,)
|
||||
control_codes[defines.GLFW_KEY_2] = (0,)
|
||||
control_codes[defines.GLFW_KEY_GRAVE_ACCENT] = control_codes[defines.GLFW_KEY_UNDERSCORE] = \
|
||||
control_codes[defines.GLFW_KEY_SPACE] = control_codes[defines.GLFW_KEY_2] = (0,)
|
||||
control_codes[defines.GLFW_KEY_3] = (27,)
|
||||
control_codes[defines.GLFW_KEY_4] = (28,)
|
||||
control_codes[defines.GLFW_KEY_5] = (29,)
|
||||
|
||||
Reference in New Issue
Block a user