mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
Breaking changes: - Nodes `(variable_name)`, `(expr_variable_name)`, `(variable_name_short)`, are exposed as `(name)`.
65 lines
735 B
Scheme
65 lines
735 B
Scheme
(comment) @comment @spell
|
|
|
|
[
|
|
"'"
|
|
(str_single_quotes)
|
|
(str_double_quotes)
|
|
] @string
|
|
|
|
(backslash_escape) @string.escape
|
|
|
|
(path) @string.special.path
|
|
|
|
(int) @number
|
|
|
|
[
|
|
(option)
|
|
(name)
|
|
] @variable
|
|
|
|
(command_line_option) @variable.builtin
|
|
|
|
((option) @variable.builtin
|
|
(#not-lua-match? @variable.builtin "^@"))
|
|
|
|
[
|
|
(if_keyword)
|
|
(elif_keyword)
|
|
(else_keyword)
|
|
(endif_keyword)
|
|
] @keyword.conditional
|
|
|
|
[
|
|
(hidden_keyword)
|
|
(command)
|
|
] @keyword
|
|
|
|
(source_file_directive
|
|
(command) @keyword.import)
|
|
|
|
(attribute) @attribute
|
|
|
|
(function_name) @function.call
|
|
|
|
"=" @operator
|
|
|
|
[
|
|
";"
|
|
"';'"
|
|
","
|
|
":"
|
|
] @punctuation.delimiter
|
|
|
|
[
|
|
"#"
|
|
"?"
|
|
] @punctuation.special
|
|
|
|
[
|
|
"#{"
|
|
"}"
|
|
"#["
|
|
"]"
|
|
"["
|
|
"{"
|
|
] @punctuation.bracket
|