From 5549acdc7220f2d9341e6f0f958b9ea6226d7982 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Fri, 14 Jan 2022 10:03:39 -0600 Subject: [PATCH] use [+t,]+t for selecting sibling syntax nodes --- helix-term/src/keymap.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index 79b92b54be01..e5167e91e756 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -570,14 +570,14 @@ impl Default for Keymaps { "D" => goto_first_diag, "space" => add_newline_above, "o" => shrink_selection, - "s" => select_prev_sibling, + "t" => select_prev_sibling, }, "]" => { "Right bracket" "d" => goto_next_diag, "D" => goto_last_diag, "space" => add_newline_below, "o" => expand_selection, - "s" => select_next_sibling, + "t" => select_next_sibling, }, "/" => search,