aboutsummaryrefslogtreecommitdiff
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
parent583bf705c83cec8aba6444cec2f35f5a844164f5 (diff)
parent986b932ad1ebbf9e11ea4c5684d9dea9a04ed03e (diff)
downloadlite-xl-plugins-afb5c04774595b9fa8be1b5f999b7dc9642ad6af.tar.gz
lite-xl-plugins-afb5c04774595b9fa8be1b5f999b7dc9642ad6af.zip
Merge remote-tracking branch 'rxi/master'
-rw-r--r--README.md2
-rw-r--r--plugins/language_dart.lua62
-rw-r--r--plugins/language_moon.lua61
3 files changed, 125 insertions, 0 deletions
diff --git a/README.md b/README.md
index 517a0fc..a973c9d 100644
--- a/README.md
+++ b/README.md
@@ -43,6 +43,7 @@ Plugin | Description
[`language_cpp`](plugins/language_cpp.lua?raw=1) | Syntax for the [C++](https://isocpp.org/) programming language
[`language_csharp`](plugins/language_csharp.lua?raw=1) | Syntax for the [C#](http://csharp.net) programming language
[`language_d`](plugins/language_d.lua?raw=1) | Syntax for the [D](https://dlang.org/) programming language
+[`language_dart`](plugins/language_dart.lua?raw=1) | Syntax for the [Dart](https://dart.dev/) programming languiage
[`language_elixir`](plugins/language_elixir.lua?raw=1) | Syntax for the [Elixir](https://elixir-lang.org) programming language
[`language_elm`](plugins/language_elm.lua?raw=1) | Syntax for the [Elm](https://elm-lang.org) programming language
[`language_fe`](plugins/language_fe.lua?raw=1) | Syntax for the [fe](https://github.com/rxi/fe) programming language
@@ -57,6 +58,7 @@ Plugin | Description
[`language_ksy`](https://raw.githubusercontent.com/whiteh0le/lite-plugins/main/plugins/language_ksy.lua?raw=1) | Syntax for [Kaitai](http://kaitai.io/) struct files
[`language_make`](plugins/language_make.lua?raw=1) | Syntax for the Make build system language
[`language_meson`](plugins/language_meson.lua?raw=1) | Syntax for the [Meson](https://mesonbuild.com) build system language
+[`language_moon`](plugins/language_moon.lua?raw=1) | Syntax for the [MoonScript](https://moonscript.org) scripting language
[`language_nim`](plugins/language_nim.lua?raw=1) | Syntax for the [Nim](https://nim-lang.org) programming language
[`language_objc`](plugins/language_objc.lua?raw=1) | Syntax for the [Objective C](https://en.wikipedia.org/wiki/Objective-C) programming language
[`language_odin`](plugins/language_odin.lua?raw=1) | Syntax for the [Odin](https://github.com/odin-lang/Odin) programming language
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",
+ },
+}
+