mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-06 21:40:03 -04:00
13 lines
258 B
Scheme
13 lines
258 B
Scheme
((string_literal) @markdown
|
|
(#match? @markdown "^\"\"\"")
|
|
(#offset! @markdown 0 3 0 -3))
|
|
|
|
[
|
|
(line_comment)
|
|
(block_comment)
|
|
] @comment
|
|
|
|
((prefixed_string_literal
|
|
prefix: (identifier) @_prefix) @regex
|
|
(#eq? @_prefix "r")
|
|
(#offset! @regex 0 2 0 -1))
|