Skip to content

Commit

Permalink
Shader: Allow uint suffix on hex literals
Browse files Browse the repository at this point in the history
  • Loading branch information
AlfishSoftware committed Jul 18, 2023
1 parent 18ca62a commit 0b7f6ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lang.gdshader/gdshader.tmLanguage.json
Expand Up @@ -402,7 +402,7 @@
},
"literalInt": {
"name": "constant.numeric.integer.gdshader",
"match": "\\b(?:0[xX][0-9A-Fa-f]+|\\d+[uU]?)\\b"
"match": "\\b(?:0[xX][0-9A-Fa-f]+|\\d+)[uU]?\\b"
},
"literalBool": {
"name": "constant.language.boolean.gdshader",
Expand Down

0 comments on commit 0b7f6ea

Please sign in to comment.