diff options
author | ThaCuber <70547062+ThaCuber@users.noreply.github.com> | 2023-05-20 11:46:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-20 11:46:24 -0400 |
commit | d2a09e6c6b960d2b95398c92e73cad24f7d4993e (patch) | |
tree | 2af45c622091553dfcba9eab5868945cb1fca5bc /plugins/language_gravity.lua | |
parent | a27e0ba00ad317c21cb06963007197ccec972ebe (diff) | |
download | lite-xl-plugins-d2a09e6c6b960d2b95398c92e73cad24f7d4993e.tar.gz lite-xl-plugins-d2a09e6c6b960d2b95398c92e73cad24f7d4993e.zip |
Added a bunch of languages (#251)
* Add a bunch of language highlighters
* ah shit, the manifest
Diffstat (limited to 'plugins/language_gravity.lua')
-rw-r--r-- | plugins/language_gravity.lua | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/plugins/language_gravity.lua b/plugins/language_gravity.lua new file mode 100644 index 0000000..d5bd761 --- /dev/null +++ b/plugins/language_gravity.lua @@ -0,0 +1,98 @@ +-- mod-version:3 +local syntax = require 'core.syntax' + +syntax.add { + name = "Gravity", + files = { "%.gravity$" }, + comment = "//", + block_comment = {"/*", "*/"}, + patterns = { + { pattern = "#![^\n]+", type = "comment" }, + { pattern = "//[^\n]+", type = "comment" }, + { pattern = { "/%*", "%*/" }, type = "comment" }, + { pattern = { '"', '"', "\\" }, type = "string" }, + + { pattern = "[~=!<>]=?", type = "operator" }, + { pattern = "[!=]==", type = "operator" }, + { pattern = "[%+%-%*/%%&|^]", type = "operator" }, + { pattern = "%.%.[%.<]", type = "operator" }, + + { pattern = "0[bB][0-1]+%f[%D]", type = "number" }, + { pattern = "0[oO][0-7]+", type = "number" }, + { pattern = "0[xX]%x+", type = "number" }, + { pattern = "%.?%d+[eE]?%-?%d*", type = "number" }, + + { pattern = "#%s*include%s*%f[\"]", type = "literal"}, + { pattern = "#%s*unittest%s*%f[{]", type = "literal"}, + + --{ pattern = "[%+%-%*/]%s*()%(", type = { "function", "normal" }}, + { pattern = "[%a_][%w_]+%s*%f[%(]", type = "function"}, + { pattern = "[%a_][%w_]*", type = "symbol" }, + }, + symbols = { + ["true"] = "literal", + ["false"] = "literal", + ["null"] = "literal", + ["self"] = "keyword2", + + ["Object"] = "literal", + ["Int"] = "literal", + ["Float"] = "literal", + ["String"] = "literal", + ["Bool"] = "literal", + ["Null"] = "literal", + ["Class"] = "literal", + ["Function"] = "literal", + ["Fiber"] = "literal", + ["Instance"] = "literal", + ["List"] = "literal", + ["Map"] = "literal", + ["Range"] = "literal", + + ["System"] = "literal", + ["Math"] = "literal", + ["File"] = "literal", + ["ENV"] = "literal", + + ["if"] = "keyword", + ["in"] = "keyword", + ["or"] = "keyword", + ["is"] = "operator", + ["for"] = "keyword", + ["var"] = "keyword", + ["and"] = "keyword", + ["not"] = "keyword", + ["func"] = "keyword", + ["else"] = "keyword", + ["true"] = "keyword", + ["enum"] = "keyword", + ["case"] = "keyword", + ["null"] = "keyword", + ["file"] = "keyword", + ["lazy"] = "keyword", + ["super"] = "keyword", + ["break"] = "keyword", + ["while"] = "keyword", + ["class"] = "keyword", + ["const"] = "keyword", + ["event"] = "keyword", + ["_func"] = "keyword", + ["_args"] = "keyword", + ["struct"] = "keyword", + ["repeat"] = "keyword", + ["switch"] = "keyword", + ["return"] = "keyword", + ["public"] = "keyword", + ["static"] = "keyword", + ["extern"] = "keyword", + ["import"] = "keyword", + ["module"] = "keyword", + ["default"] = "keyword", + ["private"] = "keyword", + ["continue"] = "keyword", + ["internal"] = "keyword", + ["undefined"] = "keyword", + } +} + + |