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

@ -36,8 +36,12 @@
["ctrl+shift+tab", "previous_tab"],
["ctrl+page_down", "next_tab"],
["ctrl+page_up", "previous_tab"],
["ctrl+kp_page_down", "next_tab"],
["ctrl+kp_page_up", "previous_tab"],
["ctrl+shift+page_down", "move_tab_next"],
["ctrl+shift+page_up", "move_tab_previous"],
["ctrl+shift+kp_page_down", "move_tab_next"],
["ctrl+shift+kp_page_up", "move_tab_previous"],
["ctrl+shift+e", "switch_buffers"],
["alt+shift+v", "clipboard_history"],
["ctrl+0", "reset_fontsize"],

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"],