From 6143afe599a5cfdb5d568e560258f8ac71fed9fc Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Tue, 25 Feb 2025 16:55:12 -0500 Subject: [PATCH] AutoYADM commit: 2025-02-25 16:55:12 --- .config/helix/config.toml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.config/helix/config.toml b/.config/helix/config.toml index 15ec06dd..8d189878 100644 --- a/.config/helix/config.toml +++ b/.config/helix/config.toml @@ -64,11 +64,18 @@ C-k = "signature_help" # Treesitter selections # Left <-> Right: Sibling nodes # Up <-> Down: Parent/Child nodes -# TODO: move_parent_node_end conflict +A-S-n= "move_parent_node_end" +A-S-e= "move_parent_node_start" +A-a = "select_all_siblings" A-m = "select_prev_sibling" A-n = "shrink_selection" A-e = "expand_selection" A-i = "select_next_sibling" +"{" = "rotate_selections_backward" +"}" = "rotate_selections_forward" +"A-{" = "rotate_selection_contents_backward" +"A-}" = "rotate_selection_contents_forward" + tab = "trim_selections" C-k = "signature_help" C-g = [":new", ":insert-output lazygit", ":buffer-close!", ":redraw"] @@ -128,6 +135,16 @@ i = "extend_to_line_end" I = "extend_to_line_end_newline" [keys.select] +# Treesitter selections +# Left <-> Right: Sibling nodes +# Up <-> Down: Parent/Child nodes +A-S-n= "move_parent_node_end" +A-S-e= "move_parent_node_start" +A-a = "select_all_siblings" +A-m = "select_prev_sibling" +A-n = "shrink_selection" +A-e = "expand_selection" +A-i = "select_next_sibling" X = "extend_line_above" ret = "extend_to_word" m = "extend_char_left"