mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-05 22:09:56 +03:00
Fix keywords for Vector in GDScript syntax highlighting
- Add Vector4 and Vector4i to syntax highlighting. - Removed nonexistent PackedVector2iArray and PackedVector3iArray.
This commit is contained in:
committed by
Max Hilbrunner
parent
5f13e67349
commit
b09ab6fef9
@@ -341,6 +341,8 @@ class GDScriptLexer(RegexLexer):
|
|||||||
"AABB",
|
"AABB",
|
||||||
"Plane",
|
"Plane",
|
||||||
"Quaternion",
|
"Quaternion",
|
||||||
|
"Vector4",
|
||||||
|
"Vector4i",
|
||||||
"Basis",
|
"Basis",
|
||||||
"Transform3D",
|
"Transform3D",
|
||||||
"Color",
|
"Color",
|
||||||
@@ -355,9 +357,7 @@ class GDScriptLexer(RegexLexer):
|
|||||||
"PackedFloat64Array",
|
"PackedFloat64Array",
|
||||||
"PackedStringArray",
|
"PackedStringArray",
|
||||||
"PackedVector2Array",
|
"PackedVector2Array",
|
||||||
"PackedVector2iArray",
|
|
||||||
"PackedVector3Array",
|
"PackedVector3Array",
|
||||||
"PackedVector3iArray",
|
|
||||||
"PackedVector4Array",
|
"PackedVector4Array",
|
||||||
"PackedColorArray",
|
"PackedColorArray",
|
||||||
"null",
|
"null",
|
||||||
|
|||||||
Reference in New Issue
Block a user