mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-20 20:30:05 -04:00
feat!: drop modules, general refactor and cleanup
This commit is contained in:
parent
c13e28f894
commit
2c8f2f2fad
829 changed files with 4905 additions and 8010 deletions
26
runtime/queries/usd/indents.scm
Normal file
26
runtime/queries/usd/indents.scm
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
[
|
||||
(block) ; The {}s in `def "foo" { ... Attributes / Prims here ... }`
|
||||
(dictionary) ; The {}s in `dictionary foo = { string "foo" = "bar" }`
|
||||
(list)
|
||||
(list_proxy) ; [@foo.usda@, @bar.usda@]
|
||||
(metadata) ; ( anything = "goes-here" )
|
||||
(prim_paths) ; [</foo>, <../bar>]
|
||||
(timeSamples) ; The {}s in `int value.timeSamples = { 0: 1, -10: 10, ... }`
|
||||
(tuple)
|
||||
(variant_set_definition) ; The {}s in `variantSet "foo" = { "vr1" { ... } "vr2" { ... } }`
|
||||
] @indent.begin
|
||||
|
||||
(block "}" @indent.end)
|
||||
(dictionary "}" @indent.end)
|
||||
(list "]" @indent.end)
|
||||
(list_proxy "]" @indent.end)
|
||||
(metadata ")" @indent.end)
|
||||
(timeSamples "}" @indent.end)
|
||||
(tuple ")" @indent.end)
|
||||
(variant_set_definition "}" @indent.end)
|
||||
|
||||
[
|
||||
")"
|
||||
"]"
|
||||
"}"
|
||||
] @indent.branch
|
||||
Loading…
Add table
Add a link
Reference in a new issue