1
0
mirror of https://github.com/helix-editor/helix synced 2026-03-20 13:15:07 +01:00
helix/runtime/queries/ripple/brackets.scm
godalming123 ecdbeca790
Add support for ripple (#14798)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
2025-11-30 11:18:14 -06:00

17 lines
258 B
Scheme

; Bracket pairs for cursor navigation
(jsx_opening_element
"<" @open
">" @close)
(jsx_closing_element
"</" @open
">" @close)
(jsx_self_closing_element
"<" @open
"/>" @close)
("(" @open ")" @close)
("[" @open "]" @close)
("{" @open "}" @close)