From 99dc805817033d5eddd1830697335491f5ef6114 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Mon, 22 Sep 2025 12:25:13 +0200 Subject: [PATCH] feat: add flow mode keybinds for unnamed AST sibling movement --- src/keybind/builtin/flow.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/keybind/builtin/flow.json b/src/keybind/builtin/flow.json index 8f0a85a..e975af7 100644 --- a/src/keybind/builtin/flow.json +++ b/src/keybind/builtin/flow.json @@ -132,6 +132,10 @@ ["alt+shift+right", "expand_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+shift+e", "move_parent_node_end"], ["alt+shift+b", "move_parent_node_start"], ["alt+a", "select_all_siblings"],