fix prefix underscores in identifiers in lua syntax
This commit is contained in:
parent
acb5a44866
commit
846e2a564c
|
@ -18,7 +18,10 @@
|
|||
"is": "literal"
|
||||
},
|
||||
{ "regex": "0[xX]\\.[0-9a-fA-F]+([pP][-+]?[0-9]+)?", "is": "literal" },
|
||||
{ "regex": "[0-9_]+(\\.[0-9_]*([eE][-+]?[0-9_]+)?)?", "is": "literal" },
|
||||
{
|
||||
"regex": "[0-9][0-9_]+(\\.[0-9_]*([eE][-+]?[0-9_]+)?)?",
|
||||
"is": "literal"
|
||||
},
|
||||
{
|
||||
"regex": "<([a-zA-Z_][a-zA-Z0-9_]*)>",
|
||||
"is": {
|
||||
|
|
Loading…
Reference in a new issue