From 52996ed57dd1f9d0a763f2019f4b120951022f86 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Mon, 22 Sep 2025 13:07:03 +0200 Subject: [PATCH] feat: make AST keybindings more intuitive --- src/keybind/builtin/flow.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/keybind/builtin/flow.json b/src/keybind/builtin/flow.json index e975af7..c139a3a 100644 --- a/src/keybind/builtin/flow.json +++ b/src/keybind/builtin/flow.json @@ -128,14 +128,14 @@ ["alt+shift+s", "filter", "sort", "-u"], ["alt+shift+v", "paste"], ["alt+shift+i", "add_cursors_to_line_ends"], - ["alt+shift+left", "shrink_selection"], - ["alt+shift+right", "expand_selection"], + ["alt+shift+left", "expand_selection"], + ["alt+shift+right", "shrink_selection"], ["alt+home", "select_prev_sibling"], ["alt+end", "select_next_sibling"], - ["alt+]", "shrink_selection", true], - ["alt+[", "expand_selection"], - ["alt+{", "select_prev_sibling", true], - ["alt+}", "select_next_sibling", true], + ["alt+{", "expand_selection"], + ["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"],