Added goto to lua language plugin

This commit is contained in:
luveti 2020-04-21 15:36:58 -04:00
parent 55d7fa58d0
commit 6ca88473c0
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@ syntax.add {
{ pattern = "[%+%-=/%*%^%%#<>]", type = "operator" },
{ pattern = "[%a_][%w_]*%s*%f[(\"{]", type = "function" },
{ pattern = "[%a_][%w_]*", type = "symbol" },
{ pattern = "::[%a_][%w_]*::", type = "literal" },
},
symbols = {
["if"] = "keyword",
@ -37,6 +38,7 @@ syntax.add {
["not"] = "keyword",
["and"] = "keyword",
["or"] = "keyword",
["goto"] = "keyword",
["self"] = "keyword2",
["true"] = "literal",
["false"] = "literal",