aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorrxi <rxi@users.noreply.github.com>2021-01-09 15:55:09 +0000
committerGitHub <noreply@github.com>2021-01-09 15:55:09 +0000
commit94f2516c5ac70f1ceeb948a226af856bcf4fd316 (patch)
treeed104278fca4370ab4ae44b6ef8075ae82a69cc0 /plugins
parent235be8ed31d8d3ccf83c18f27861c5d6eb677915 (diff)
parentf42ed353defe52fb29401798d5136193fde5d573 (diff)
downloadlite-xl-plugins-94f2516c5ac70f1ceeb948a226af856bcf4fd316.tar.gz
lite-xl-plugins-94f2516c5ac70f1ceeb948a226af856bcf4fd316.zip
Merge pull request #114 from mundusnine/patch-1
Add syntax highlighting for teal
Diffstat (limited to 'plugins')
-rw-r--r--plugins/language_teal.lua55
1 files changed, 55 insertions, 0 deletions
diff --git a/plugins/language_teal.lua b/plugins/language_teal.lua
new file mode 100644
index 0000000..8ab4c33
--- /dev/null
+++ b/plugins/language_teal.lua
@@ -0,0 +1,55 @@
+local syntax = require "core.syntax"
+
+syntax.add {
+ files = {"%.tl$","%.d.tl$"},
+ comment = "--",
+ patterns = {
+ { pattern = { '"', '"', '\\' }, type = "string" },
+ { pattern = { "'", "'", '\\' }, type = "string" },
+ { pattern = { "%[%[", "%]%]" }, type = "string" },
+ { pattern = { "%-%-%[%[", "%]%]"}, type = "comment" },
+ { pattern = "%-%-.-\n", type = "comment" },
+ { pattern = "-?0x%x+", type = "number" },
+ { pattern = "-?%d+[%d%.eE]*", 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" },
+ { pattern = "[%a_][%w_]*", type = "symbol" },
+ { pattern = "::[%a_][%w_]*::", type = "function" },
+ },
+ symbols = {
+ ["if"] = "keyword",
+ ["then"] = "keyword",
+ ["else"] = "keyword",
+ ["elseif"] = "keyword",
+ ["end"] = "keyword",
+ ["do"] = "keyword",
+ ["function"] = "keyword",
+ ["repeat"] = "keyword",
+ ["until"] = "keyword",
+ ["while"] = "keyword",
+ ["for"] = "keyword",
+ ["break"] = "keyword",
+ ["return"] = "keyword",
+ ["local"] = "keyword",
+ ["global"] = "keyword",
+ ["in"] = "keyword",
+ ["not"] = "keyword",
+ ["and"] = "keyword",
+ ["or"] = "keyword",
+ ["goto"] = "keyword",
+ ["enum"] = "keyword",
+ ["record"] = "keyword",
+ ["any"] = "keyword2",
+ ["boolean"] = "keyword2",
+ ["number"] = "keyword2",
+ ["string"] = "keyword2",
+ ["thread"] = "keyword2",
+ ["true"] = "literal",
+ ["false"] = "literal",
+ ["nil"] = "literal",
+ },
+}