feat(gdscript): misc operators, semicolon highlight

This commit is contained in:
Riley Bruins 2025-08-06 09:44:56 -07:00 committed by Christian Clason
parent 37bcfdc6eb
commit 4eb35c0344

View file

@ -148,6 +148,7 @@
"," ","
"." "."
":" ":"
";"
] @punctuation.delimiter ] @punctuation.delimiter
[ [
@ -171,6 +172,7 @@
"~" "~"
"-" "-"
"*" "*"
"**"
"/" "/"
"%" "%"
"+" "+"
@ -193,10 +195,13 @@
"+=" "+="
"-=" "-="
"*=" "*="
"**="
"/=" "/="
"%=" "%="
"&=" "&="
"|=" "|="
"<<="
">>="
"->" "->"
] @operator ] @operator