-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Description
I try to change the keybinding for increase font size to control+shift++
I have tried:
map control+shift++ change_font_size all +2.0
map control+shift+plus change_font_size all +2.0
map control+shift+0x2b change_font_size all +2.0
But all fail.
From --debug-keyboard:
Press scancode: 0x14 clean_sym: plus composed_sym: question mods: ctrl+shift glfw_fallback_key: 45 (MINUS) xkb_key: 45 (minus)
Keypress matched action: change_font_size
It seems that kitty inserts automatically glif_fallback_key: 45 (minus) and then the default key-chord
map kitty_mod+minus change_font_size all -2.0
kicks in, decreasing the font size instead of increasing it.
If I instead use
map control+shift+0 change_font_size all +2.0
it works.
How can I make kitty use control+shift+plus to increase the font size?