snacks.nvim/queries/javascript/images.scm

18 lines
414 B
Scheme

(jsx_element
(jsx_opening_element
(identifier) @tag (#eq? @tag "img")
(jsx_attribute
(property_identifier) @attr_name (#eq? @attr_name "src")
(string (string_fragment) @image)
)
)
) @anchor
(jsx_self_closing_element
(identifier) @tag (#eq? @tag "img")
(jsx_attribute
(property_identifier) @attr_name (#eq? @attr_name "src")
(string (string_fragment) @image)
)
) @anchor