diff options
author | James Perih <james@hotdang.ca> | 2021-03-23 11:25:28 -0600 |
---|---|---|
committer | James Perih <james@hotdang.ca> | 2021-03-23 11:25:28 -0600 |
commit | e66dc87823b4b48f03833855c827c053397dceb6 (patch) | |
tree | b709f3ac46d926ec6abe56049261f8b85869c588 | |
parent | 8a8b9701b95d1ccddb4cf719468d32c72f523f1f (diff) | |
download | lite-xl-plugins-e66dc87823b4b48f03833855c827c053397dceb6.tar.gz lite-xl-plugins-e66dc87823b4b48f03833855c827c053397dceb6.zip |
Add primative dart syntax highlighting rule. Update readme.
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | plugins/language_dart.lua | 62 |
2 files changed, 63 insertions, 0 deletions
@@ -41,6 +41,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?raw1=) | 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 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", + }, +} + |