language_lua.lua: added <const> and <close>

This commit is contained in:
Sebastian Huebner 2020-06-30 19:22:34 +02:00
parent 87532a4b3a
commit d493068567
No known key found for this signature in database
GPG Key ID: AFA10CBFE4391C0C
1 changed files with 2 additions and 0 deletions

View File

@ -13,6 +13,8 @@ syntax.add {
{ pattern = "-?0x%x+", type = "number" },
{ pattern = "-?%d+[%d%.eE]*", type = "number" },
{ pattern = "-?%.?%d+", type = "number" },
{ pattern = "<const>", type = "keyword2" },
{ pattern = "<close>", type = "keyword2" },
{ pattern = "%.%.%.?", type = "operator" },
{ pattern = "[<>~=]=", type = "operator" },
{ pattern = "[%+%-=/%*%^%%#<>]", type = "operator" },