mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-05 04:50:03 -04:00
36 lines
484 B
Scheme
36 lines
484 B
Scheme
[
|
|
(anchor_begin)
|
|
(anchor_end)
|
|
] @punctuation.delimiter
|
|
|
|
(pattern
|
|
(character "." @variable.builtin))
|
|
|
|
[
|
|
"[" "]"
|
|
"(" ")"
|
|
] @punctuation.bracket
|
|
|
|
[
|
|
(zero_or_more)
|
|
(shortest_zero_or_more)
|
|
(one_or_more)
|
|
(zero_or_one)
|
|
] @operator
|
|
|
|
(range
|
|
from: (character) @constant
|
|
"-" @operator
|
|
to: (character) @constant)
|
|
|
|
(set
|
|
(character) @constant)
|
|
(negated_set
|
|
(character) @constant)
|
|
|
|
(class) @keyword
|
|
|
|
(negated_set "^" @operator)
|
|
|
|
(balanced_match
|
|
(character) @parameter)
|