nichts/modules/editors/nvf/runtime/after/queries/rust/injections.scm
2024-07-06 17:14:45 +02:00

14 lines
309 B
Scheme

;extends
(macro_invocation
(scoped_identifier
path: (identifier) @path (#eq? @path "sqlx")
name: (identifier) @name (#match? @name "^query.*")
)
(token_tree
(raw_string_literal) @injection.content
(#set! injection.language "sql")
(#set! injection.include-children)
)
(#offset! @injection.content 0 3 0 -2)
)