nvim-treesitter/queries/rust/injections.scm

22 lines
308 B
Scheme
Raw Normal View History

2021-01-06 14:25:43 -05:00
(macro_invocation
(token_tree) @rust)
(macro_definition
(macro_rule
left: (token_tree_pattern) @rust
right: (token_tree) @rust))
[
(line_comment)
(block_comment)
] @comment
2021-06-20 21:20:50 +03:00
(
(macro_invocation
macro: ((identifier) @_html_def)
(token_tree) @html)
(#eq? @_html_def "html")
)