feat: added keypadd presses to match normal keys
This commit is contained in:
parent
02deaab3a7
commit
fa75da6f41
2 changed files with 8 additions and 0 deletions
|
|
@ -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"],
|
||||
|
|
|
|||
|
|
@ -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"],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue