feat: added keypadd presses to match normal keys

This commit is contained in:
Igor Támara 2025-10-28 10:48:12 -05:00 committed by CJ van den Berg
parent 02deaab3a7
commit fa75da6f41
2 changed files with 8 additions and 0 deletions

View file

@ -35,12 +35,16 @@
["alt+;", "flip_selections"],
["alt+o", "expand_selection"],
["alt+up", "expand_selection"],
["alt+kp_up", "expand_selection"],
["alt+i", "shrink_selection"],
["alt+down", "shrink_selection"],
["alt+kp_down", "shrink_selection"],
["alt+p", "select_prev_sibling"],
["alt+left", "select_prev_sibling"],
["alt+kp_left", "select_prev_sibling"],
["alt+n", "select_next_sibling"],
["alt+right", "select_next_sibling"],
["alt+kp_right", "select_next_sibling"],
["alt+e", "move_parent_node_end"],
["alt+b", "move_parent_node_start"],