feat: bind select_line to alt+shift+e in flow mode

Like in visual studio, because the more common ctrl+l is already taken.

Also, remove some keybinds for commands that don't exist.
This commit is contained in:
CJ van den Berg 2025-10-30 14:17:16 +01:00
parent 70a793d942
commit eb11a40a9f
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -168,8 +168,6 @@
["alt+}", "shrink_selection", true],
["alt+[", "select_prev_sibling", true],
["alt+]", "select_next_sibling", true],
["alt+shift+e", "move_parent_node_end"],
["alt+shift+b", "move_parent_node_start"],
["alt+a", "select_all_siblings"],
["alt+shift+home", "move_scroll_left"],
["alt+shift+end", "move_scroll_right"],
@ -202,6 +200,7 @@
["shift+enter", "smart_insert_line_before"],
["shift+backspace", "delete_backward"],
["ctrl+shift+k", "delete_line"],
["alt+shift+e", "select_line"],
["shift+tab", "unindent"],
["f2", "rename_symbol"],
["f3", "goto_next_match"],