aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorFrancesco Abbate <francesco.bbt@gmail.com>2021-03-30 14:55:18 +0200
committerFrancesco Abbate <francesco.bbt@gmail.com>2021-03-30 14:55:18 +0200
commitafb5c04774595b9fa8be1b5f999b7dc9642ad6af (patch)
tree77f29ad69d98adb0e276239fc8df507024574e3b /plugins
parent583bf705c83cec8aba6444cec2f35f5a844164f5 (diff)
parent986b932ad1ebbf9e11ea4c5684d9dea9a04ed03e (diff)
downloadlite-xl-plugins-afb5c04774595b9fa8be1b5f999b7dc9642ad6af.tar.gz
lite-xl-plugins-afb5c04774595b9fa8be1b5f999b7dc9642ad6af.zip
Merge remote-tracking branch 'rxi/master'
Diffstat (limited to 'plugins')
-rw-r--r--plugins/language_dart.lua62
-rw-r--r--plugins/language_moon.lua61
2 files changed, 123 insertions, 0 deletions
diff --git a/plugins/language_dart.lua b/plugins/language_dart.lua
new file mode 100644
index 0000000..5083fb2
--- /dev/null
+++ b/plugins/language_dart.lua
@@ -0,0 +1,62 @@
+local syntax = require "core.syntax"
+
+syntax.add {
+ files = { "%.dart$" },
+ comment = "//",
+ patterns = {
+ { pattern = "//.-\n", type = "comment" },
+ { pattern = "///.-\n", type = "comment" },
+ { pattern = { "/%*", "%*/" }, type = "comment" },
+ { pattern = { '"', '"', '\\' }, type = "string" },
+ { pattern = { "'", "'", '\\' }, type = "string" },
+ { pattern = "-?0x%x+", type = "number" },
+ { pattern = "-?%d+[%d%.eE]*f?", type = "number" },
+ { pattern = "-?%.?%d+f?", type = "number" },
+ { pattern = "[%+%-=/%*%^%%<>!~|&]", type = "operator" },
+ { pattern = "%?%?", type = "operator" },
+ { pattern = "%?%.", type = "operator" },
+ { pattern = { "[%$%@]?\"", '"', '\\' }, type = "string" },
+ { pattern = "'\\x%x?%x?%x?%x'", type = "string" },
+ { pattern = "[%a_][%w_]*%f[(]", type = "function" },
+ { pattern = "[%a_][%w_]*", type = "symbol" },
+ },
+ symbols = {
+ ["await"] = "keyword",
+ ["bool"] = "keyword2",
+ ["break"] = "keyword",
+ ["case"] = "keyword",
+ ["class"] = "keyword",
+ ["const"] = "keyword",
+ ["continue"] = "keyword",
+ ["default"] = "keyword",
+ ["do"] = "keyword",
+ ["double"] = "keyword2",
+ ["dynamic"] = "keyword2",
+ ["else"] = "keyword",
+ ["enum"] = "keyword",
+ ["false"] = "literal",
+ ["final"] = "keyword",
+ ["finally"] = "keyword",
+ ["for"] = "keyword",
+ ["Function"] = "keyword2",
+ ["if"] = "keyword",
+ ["in"] = "keyword",
+ ["int"] = "keyword2",
+ ["List"] = "keyword2",
+ ["Map"] = "keyword2",
+ ["new"] = "keyword",
+ ["null"] = "literal",
+ ["part of"] = "keyword",
+ ["print"] = "keyword",
+ ["return"] = "keyword",
+ ["static"] = "keyword",
+ ["String"] = "keyword2",
+ ["switch"] = "keyword",
+ ["then"] = "keyword",
+ ["this"] = "keyword2",
+ ["true"] = "literal",
+ ["void"] = "keyword",
+ ["while"] = "keyword",
+ },
+}
+
diff --git a/plugins/language_moon.lua b/plugins/language_moon.lua
new file mode 100644
index 0000000..4817743
--- /dev/null
+++ b/plugins/language_moon.lua
@@ -0,0 +1,61 @@
+local syntax = require "core.syntax"
+
+syntax.add {
+ files = "%.moon$",
+ headers = "^#!.*[ /]moon",
+ comment = "--",
+ patterns = {
+ { pattern = { '"', '"', '\\' }, type = "string" },
+ { pattern = { "'", "'", '\\' }, type = "string" },
+ { pattern = { "%[%[", "%]%]" }, type = "string" },
+ { pattern = "%-%-.-\n", type = "comment" },
+ { pattern = "-?0x%x+", type = "number" },
+ { pattern = "-?%d+[%d%.eE]*", type = "number" },
+ { pattern = "-?%.?%d+", type = "number" },
+ { pattern = "%.%.%.?", type = "keyword2" },
+ { pattern = "[<>~=]=", type = "keyword2" },
+ { pattern = "[%+%-=/%*%^%%#<>]", type = "keyword2" },
+ { pattern = "[%a_][%w_]*%s*%f[(\"{]", type = "function" },
+ { pattern = "[%a_][%w_]*", type = "symbol" },
+ { pattern = {"\\", "[%a_][%w_]*"}, type = "function" },
+ { pattern = {"%.", "[%a_][%w_]*"}, type = "function" },
+ { pattern = {"@", "[%a_][%w_]*"}, type = "keyword2" },
+ { pattern = "!", type = "keyword2" },
+ { pattern = "[%p]", type = "keyword" },
+ },
+ symbols = {
+ ["if"] = "keyword",
+ ["then"] = "keyword",
+ ["else"] = "keyword",
+ ["when"] = "keyword",
+ ["elseif"] = "keyword",
+ ["do"] = "keyword",
+ ["->"] = "keyword",
+ ["while"] = "keyword",
+ ["for"] = "keyword",
+ ["break"] = "keyword",
+ ["continue"] = "keyword",
+ ["export"] = "keyword",
+ ["unless"] = "keyword",
+ ["return"] = "keyword",
+ ["in"] = "keyword",
+ ["not"] = "keyword",
+ ["and"] = "keyword",
+ ["or"] = "keyword",
+ ["import"] = "keyword",
+ ["as"] = "keyword",
+ ["from"] = "keyword",
+ ["class"] = "keyword",
+ ["extends"] = "keyword",
+ ["switch"] = "keyword",
+ ["with"] = "keyword",
+ ["using"] = "keyword",
+ ["super"] = "keyword2",
+ ["self"] = "keyword2",
+ ["#"] = "keyword2",
+ ["true"] = "literal",
+ ["false"] = "literal",
+ ["nil"] = "literal",
+ },
+}
+