feat: goto_bracket goes to the pair bracket under cursor

Uses simple matching nesting, as a complement to tree-sitter approach.

Flow mode shorcut ctrl+shit+\ ala Code
This commit is contained in:
Igor Támara 2025-11-09 13:27:36 -05:00 committed by CJ van den Berg
parent 57547b80ff
commit 56ea0138a5
3 changed files with 78 additions and 0 deletions

View file

@ -113,6 +113,7 @@
["ctrl+right", "move_word_right"],
["ctrl+kp_left", "move_word_left"],
["ctrl+kp_right", "move_word_right"],
["ctrl+shift+\\", "goto_bracket"],
["ctrl+backspace", "delete_word_left"],
["ctrl+delete", "delete_word_right"],
["alt+shift+f5", "toggle_inspector_view"],