mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-05 13:00:08 -04:00
48 lines
544 B
Scheme
48 lines
544 B
Scheme
; Schemes
|
|
(scheme) @type
|
|
|
|
; Methods
|
|
(method) @function.method
|
|
|
|
; Constants
|
|
(const_spec) @constant
|
|
|
|
; Variables
|
|
(identifier) @variable
|
|
|
|
; Fields
|
|
(pair
|
|
name: (identifier) @variable.member)
|
|
|
|
; Parameters
|
|
(query_param
|
|
(key) @variable.parameter)
|
|
|
|
; Operators
|
|
[
|
|
"="
|
|
"?"
|
|
"&"
|
|
"@"
|
|
] @operator
|
|
|
|
; Literals
|
|
(string) @string
|
|
|
|
(target_url) @string.special.url
|
|
|
|
(number) @number
|
|
|
|
; (boolean) @boolean
|
|
(null) @constant.builtin
|
|
|
|
; Punctuation
|
|
[
|
|
"{{"
|
|
"}}"
|
|
] @punctuation.bracket
|
|
|
|
":" @punctuation.delimiter
|
|
|
|
; Comments
|
|
(comment) @comment @spell
|