2021-08-17 15:46:21 +02:00
|
|
|
-- mod-version:2 -- lite-xl 2.0
|
2020-03-07 16:53:54 +01:00
|
|
|
local syntax = require "core.syntax"
|
|
|
|
|
|
|
|
syntax.add {
|
|
|
|
files = "%.lua$",
|
2020-06-08 10:44:51 +02:00
|
|
|
headers = "^#!.*[ /]lua",
|
2020-03-07 16:53:54 +01:00
|
|
|
comment = "--",
|
|
|
|
patterns = {
|
2021-05-20 19:02:40 +02:00
|
|
|
{ pattern = { '"', '"', '\\' }, type = "string" },
|
|
|
|
{ pattern = { "'", "'", '\\' }, type = "string" },
|
|
|
|
{ pattern = { "%[%[", "%]%]" }, type = "string" },
|
|
|
|
{ pattern = { "%-%-%[%[", "%]%]"}, type = "comment" },
|
|
|
|
{ pattern = "%-%-.-\n", type = "comment" },
|
|
|
|
{ pattern = "0x%x+%.%x*[pP][-+]?%d+", type = "number" },
|
|
|
|
{ pattern = "0x%x+%.%x*", type = "number" },
|
|
|
|
{ pattern = "0x%.%x+[pP][-+]?%d+", type = "number" },
|
|
|
|
{ pattern = "0x%.%x+", type = "number" },
|
|
|
|
{ pattern = "0x%x+[pP][-+]?%d+", type = "number" },
|
|
|
|
{ pattern = "0x%x+", type = "number" },
|
|
|
|
{ pattern = "%d%.%d*[eE][-+]?%d+", type = "number" },
|
|
|
|
{ pattern = "%d%.%d*", type = "number" },
|
|
|
|
{ pattern = "%.?%d*[eE][-+]?%d+", type = "number" },
|
|
|
|
{ pattern = "%.?%d+", type = "number" },
|
|
|
|
{ pattern = "<%a+>", type = "keyword2" },
|
|
|
|
{ pattern = "%.%.%.?", type = "operator" },
|
|
|
|
{ pattern = "[<>~=]=", type = "operator" },
|
|
|
|
{ pattern = "[%+%-=/%*%^%%#<>]", type = "operator" },
|
|
|
|
{ pattern = "[%a_][%w_]*()%s*%f[(\"'{]", type = {"function", "normal"} },
|
|
|
|
{ pattern = "[%a_][%w_]*", type = "symbol" },
|
|
|
|
{ pattern = "::[%a_][%w_]*::", type = "function" },
|
2020-03-07 16:53:54 +01:00
|
|
|
},
|
|
|
|
symbols = {
|
|
|
|
["if"] = "keyword",
|
|
|
|
["then"] = "keyword",
|
|
|
|
["else"] = "keyword",
|
|
|
|
["elseif"] = "keyword",
|
|
|
|
["end"] = "keyword",
|
|
|
|
["do"] = "keyword",
|
|
|
|
["function"] = "keyword",
|
|
|
|
["repeat"] = "keyword",
|
|
|
|
["until"] = "keyword",
|
|
|
|
["while"] = "keyword",
|
|
|
|
["for"] = "keyword",
|
2021-08-11 17:05:22 +02:00
|
|
|
["break"] = "keyword",
|
|
|
|
["return"] = "keyword",
|
2020-03-07 16:53:54 +01:00
|
|
|
["local"] = "keyword",
|
|
|
|
["in"] = "keyword",
|
|
|
|
["not"] = "keyword",
|
|
|
|
["and"] = "keyword",
|
|
|
|
["or"] = "keyword",
|
2020-04-21 21:36:58 +02:00
|
|
|
["goto"] = "keyword",
|
2020-03-07 16:53:54 +01:00
|
|
|
["self"] = "keyword2",
|
|
|
|
["true"] = "literal",
|
|
|
|
["false"] = "literal",
|
|
|
|
["nil"] = "literal",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|