diff options
author | rxi <rxi@users.noreply.github.com> | 2020-06-20 15:41:56 +0100 |
---|---|---|
committer | rxi <rxi@users.noreply.github.com> | 2020-06-20 15:41:56 +0100 |
commit | 467e90c56fce5b5d39a25b1c409a9f03e3b8fbe4 (patch) | |
tree | 362e4d4cce36a888474a8f35501f01e7c6496031 /plugins/language_pico8.lua | |
parent | cbcccb49651f0e6403314f9838fd0a8f9f4fd77e (diff) | |
download | lite-xl-plugins-467e90c56fce5b5d39a25b1c409a9f03e3b8fbe4.tar.gz lite-xl-plugins-467e90c56fce5b5d39a25b1c409a9f03e3b8fbe4.zip |
Added `language_pico8`
Diffstat (limited to 'plugins/language_pico8.lua')
-rw-r--r-- | plugins/language_pico8.lua | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/plugins/language_pico8.lua b/plugins/language_pico8.lua new file mode 100644 index 0000000..8edf92f --- /dev/null +++ b/plugins/language_pico8.lua @@ -0,0 +1,51 @@ +local syntax = require "core.syntax" + +syntax.add { + files = "%.p8$", + headers = "^pico-8 cartridge", + comment = "--", + patterns = { + { pattern = { 'pico%-8 cartridge', '__lua__' }, type = "comment" }, + { pattern = { '__gfx__\n', '%z' }, type = "comment" }, + { 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 = "%.%.%.?", 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", + ["in"] = "keyword", + ["not"] = "keyword", + ["and"] = "keyword", + ["or"] = "keyword", + ["goto"] = "keyword", + ["self"] = "keyword2", + ["true"] = "literal", + ["false"] = "literal", + ["nil"] = "literal", + }, +} + |