mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-13 20:14:12 +02:00
Fix Ctrl+underscore not being passed to child programs in normal and application keyboard modes
This commit is contained in:
@@ -121,6 +121,7 @@ control_codes.update({
|
||||
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_3] = (27,)
|
||||
@@ -206,8 +207,8 @@ UN_SHIFTED_PRINTABLE.update(pmap(
|
||||
" ',-./;="
|
||||
))
|
||||
UN_SHIFTED_PRINTABLE.update(pmap(
|
||||
'LEFT_BRACKET BACKSLASH RIGHT_BRACKET GRAVE_ACCENT',
|
||||
"[\\]`"
|
||||
'LEFT_BRACKET BACKSLASH RIGHT_BRACKET GRAVE_ACCENT UNDERSCORE',
|
||||
"[\\]`_"
|
||||
))
|
||||
SHIFTED_PRINTABLE = UN_SHIFTED_PRINTABLE.copy()
|
||||
SHIFTED_PRINTABLE.update({
|
||||
|
||||
Reference in New Issue
Block a user