diff options
| author | elgiano <elgiano@gmail.com> | 2026-02-20 15:38:13 +0100 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2026-03-04 12:35:03 +0100 |
| commit | 544320a9cf5d6bf539ec1cc54d393064015670c4 (patch) | |
| tree | 978afb6972eab4271c8a9febb18ed52da1bce45d /lua | |
| parent | fix(config): normalize default `install_dir` (diff) | |
| download | nvim-treesitter-544320a9cf5d6bf539ec1cc54d393064015670c4.tar nvim-treesitter-544320a9cf5d6bf539ec1cc54d393064015670c4.tar.gz nvim-treesitter-544320a9cf5d6bf539ec1cc54d393064015670c4.tar.bz2 nvim-treesitter-544320a9cf5d6bf539ec1cc54d393064015670c4.tar.lz nvim-treesitter-544320a9cf5d6bf539ec1cc54d393064015670c4.tar.xz nvim-treesitter-544320a9cf5d6bf539ec1cc54d393064015670c4.tar.zst nvim-treesitter-544320a9cf5d6bf539ec1cc54d393064015670c4.zip | |
feat(supercollider)!: update parser and queries
parser PR: https://github.com/madskjeldgaard/tree-sitter-supercollider/pull/67
removed nodes:
control_structure, if, while, for, forby, method_call,
method_name, instance_variable_setter_call, argument_calls
added nodes:
class_def_body, !==, ===
modified nodes:
function_call now has fields receiver, name and arguments
chained method calls now appear as nested function_calls (where receiver
is another function_call)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 39dc10687..4206c656a 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -2184,11 +2184,11 @@ return { }, supercollider = { install_info = { - revision = '76b3cab1773f08bb7d3a185420b0a44c6da8c294', + revision = 'e2d1480de0a62cd53f81645cb39bc1f3fa2dce5a', url = 'https://github.com/madskjeldgaard/tree-sitter-supercollider', }, - maintainers = { '@madskjeldgaard' }, - tier = 3, + maintainers = { '@madskjeldgaard', '@elgiano' }, + tier = 2, }, superhtml = { install_info = { |
