Skip to content

Commit

Permalink
use [+t,]+t for selecting sibling syntax nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Jan 14, 2022
1 parent d1df47f commit 5549acd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helix-term/src/keymap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5549acd

Please sign in to comment.