From eb11a40a9f59323193d3b5b7c9df8c21f67de78f Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Thu, 30 Oct 2025 14:17:16 +0100 Subject: [PATCH] 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. --- src/keybind/builtin/flow.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/keybind/builtin/flow.json b/src/keybind/builtin/flow.json index 4edfb38..021af07 100644 --- a/src/keybind/builtin/flow.json +++ b/src/keybind/builtin/flow.json @@ -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"],