mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-18 19:30:02 -04:00
46 lines
525 B
Scheme
46 lines
525 B
Scheme
|
|
; Literals
|
||
|
|
|
||
|
|
(string) @string
|
||
|
|
(escape_sequence) @string.escape
|
||
|
|
|
||
|
|
(hex_blob
|
||
|
|
"x" @character.special
|
||
|
|
(_) @string)
|
||
|
|
|
||
|
|
(esc_blob
|
||
|
|
"b" @character.special
|
||
|
|
(_) @string)
|
||
|
|
|
||
|
|
(datetime
|
||
|
|
"d" @character.special
|
||
|
|
(_) @string.special)
|
||
|
|
|
||
|
|
(number) @number
|
||
|
|
|
||
|
|
(float) @float
|
||
|
|
|
||
|
|
(boolean) @boolean
|
||
|
|
|
||
|
|
(null) @constant.builtin
|
||
|
|
|
||
|
|
; Punctuation
|
||
|
|
|
||
|
|
[
|
||
|
|
","
|
||
|
|
":"
|
||
|
|
] @punctuation.delimiter
|
||
|
|
|
||
|
|
[ "{" "}" ] @punctuation.bracket
|
||
|
|
|
||
|
|
[ "[" "]" ] @punctuation.bracket
|
||
|
|
|
||
|
|
[ "<" ">" ] @punctuation.bracket
|
||
|
|
|
||
|
|
; Comments
|
||
|
|
|
||
|
|
(comment) @comment @spell
|
||
|
|
|
||
|
|
; Errors
|
||
|
|
|
||
|
|
(ERROR) @error
|