fix(usd): misc punctuation highlights

This commit is contained in:
Riley Bruins 2026-01-07 22:05:52 -08:00 committed by Christian Clason
parent 9177f2ff06
commit 5e8652dbaf
2 changed files with 4 additions and 0 deletions

View file

@ -52,12 +52,14 @@
"]" "]"
"{" "{"
"}" "}"
"[]"
] @punctuation.bracket ] @punctuation.bracket
[ [
":" ":"
";" ";"
"." "."
","
] @punctuation.delimiter ] @punctuation.delimiter
"=" @operator "=" @operator

View file

@ -3,8 +3,10 @@ def Xform "cube" (
# <- @keyword # <- @keyword
asset[] payloadAssetDependencies = [@fizz.usd@, @buzz.usd@] asset[] payloadAssetDependencies = [@fizz.usd@, @buzz.usd@]
# <- @type # <- @type
# ^ @punctuation.bracket
# ^ @keyword # ^ @keyword
# ^ @string.special.url # ^ @string.special.url
# ^ @punctuation.delimiter
# ^ @string.special.url # ^ @string.special.url
} }
) )