Add initial support for SuperCollider (#9329)
This commit is contained in:
parent
4ffe993533
commit
94d210c9bf
4 changed files with 96 additions and 0 deletions
|
@ -170,6 +170,7 @@
|
||||||
| sshclientconfig | ✓ | | | |
|
| sshclientconfig | ✓ | | | |
|
||||||
| starlark | ✓ | ✓ | | |
|
| starlark | ✓ | ✓ | | |
|
||||||
| strace | ✓ | | | |
|
| strace | ✓ | | | |
|
||||||
|
| supercollider | ✓ | | | |
|
||||||
| svelte | ✓ | | ✓ | `svelteserver` |
|
| svelte | ✓ | | ✓ | `svelteserver` |
|
||||||
| sway | ✓ | ✓ | ✓ | `forc` |
|
| sway | ✓ | ✓ | ✓ | `forc` |
|
||||||
| swift | ✓ | | | `sourcekit-lsp` |
|
| swift | ✓ | | | `sourcekit-lsp` |
|
||||||
|
|
|
@ -3328,3 +3328,15 @@ grammar = "hyprlang"
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "hyprlang"
|
name = "hyprlang"
|
||||||
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-hyprlang", rev = "27af9b74acf89fa6bed4fb8cb8631994fcb2e6f3"}
|
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-hyprlang", rev = "27af9b74acf89fa6bed4fb8cb8631994fcb2e6f3"}
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "supercollider"
|
||||||
|
scope = "source.supercollider"
|
||||||
|
injection-regex = "supercollider"
|
||||||
|
file-types = ["scd", "sc", "quark"]
|
||||||
|
comment-token = "//"
|
||||||
|
indent = { tab-width = 4, unit = "\t" }
|
||||||
|
|
||||||
|
[[grammar]]
|
||||||
|
name = "supercollider"
|
||||||
|
source = { git = "https://github.com/madskjeldgaard/tree-sitter-supercollider", rev = "3b35bd0fded4423c8fb30e9585c7bacbcd0e8095" }
|
||||||
|
|
7
runtime/queries/supercollider/folds.scm
Normal file
7
runtime/queries/supercollider/folds.scm
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
[
|
||||||
|
(function_call)
|
||||||
|
(code_block)
|
||||||
|
(function_block)
|
||||||
|
(control_structure)
|
||||||
|
] @fold
|
||||||
|
|
76
runtime/queries/supercollider/highlights.scm
Normal file
76
runtime/queries/supercollider/highlights.scm
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
(line_comment) @comment.line
|
||||||
|
(block_comment) @comment.block
|
||||||
|
|
||||||
|
(argument name: (identifier) @variable.parameter)
|
||||||
|
|
||||||
|
(local_var name: (identifier) @variable)
|
||||||
|
(environment_var name:(identifier) @variable.builtin)
|
||||||
|
(builtin_var) @constant.builtin
|
||||||
|
|
||||||
|
(function_definition name: (variable) @function)
|
||||||
|
|
||||||
|
(named_argument name: (identifier) @variable.other.member)
|
||||||
|
|
||||||
|
(method_call name: (method_name) @function.method)
|
||||||
|
|
||||||
|
(class) @keyword.storage.type
|
||||||
|
|
||||||
|
(number) @constant.numeric
|
||||||
|
(float) @constant.numeric.float
|
||||||
|
|
||||||
|
(string) @string
|
||||||
|
(symbol) @string.special.symbol
|
||||||
|
|
||||||
|
[
|
||||||
|
"&&"
|
||||||
|
"||"
|
||||||
|
"&"
|
||||||
|
"|"
|
||||||
|
"^"
|
||||||
|
"=="
|
||||||
|
"!="
|
||||||
|
"<"
|
||||||
|
"<="
|
||||||
|
">"
|
||||||
|
">="
|
||||||
|
"<<"
|
||||||
|
">>"
|
||||||
|
"+"
|
||||||
|
"-"
|
||||||
|
"*"
|
||||||
|
"/"
|
||||||
|
"%"
|
||||||
|
"="
|
||||||
|
"|@|"
|
||||||
|
"@@"
|
||||||
|
"@|@"
|
||||||
|
] @operator
|
||||||
|
|
||||||
|
[
|
||||||
|
"arg"
|
||||||
|
"classvar"
|
||||||
|
"const"
|
||||||
|
"var"
|
||||||
|
] @keyword
|
||||||
|
|
||||||
|
[
|
||||||
|
"("
|
||||||
|
")"
|
||||||
|
"["
|
||||||
|
"]"
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
"|"
|
||||||
|
] @punctuation.bracket
|
||||||
|
|
||||||
|
[
|
||||||
|
";"
|
||||||
|
"."
|
||||||
|
","
|
||||||
|
] @punctuation.delimiter
|
||||||
|
|
||||||
|
(control_structure) @keyword.control.conditional
|
||||||
|
|
||||||
|
(escape_sequence) @string.special
|
||||||
|
|
||||||
|
(duplicated_statement) @keyword.control.repeat
|
Loading…
Add table
Reference in a new issue