diff options
author | Francesco Abbate <francesco.bbt@gmail.com> | 2020-06-07 22:16:36 +0200 |
---|---|---|
committer | Francesco Abbate <francesco.bbt@gmail.com> | 2020-06-07 22:16:36 +0200 |
commit | 66063abb833d5faa403f5d289012bd6f65ccfb0c (patch) | |
tree | 90f0c99ff6f14db1789d3f2bc2861c5dc6b498f4 /plugins/language_meson.lua | |
parent | af8949684146aeecde213873020fbe0618b40d4b (diff) | |
download | lite-xl-plugins-66063abb833d5faa403f5d289012bd6f65ccfb0c.tar.gz lite-xl-plugins-66063abb833d5faa403f5d289012bd6f65ccfb0c.zip |
Add support for Meson build language
Diffstat (limited to 'plugins/language_meson.lua')
-rw-r--r-- | plugins/language_meson.lua | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/plugins/language_meson.lua b/plugins/language_meson.lua new file mode 100644 index 0000000..ab6be17 --- /dev/null +++ b/plugins/language_meson.lua @@ -0,0 +1,35 @@ +local syntax = require "core.syntax" + +syntax.add { + files = "meson.build$", + comment = "#", + patterns = { + { pattern = { "#", "\n" }, type = "comment" }, + { pattern = { '"', '"', '\\' }, type = "string" }, + { pattern = { "'", "'", '\\' }, type = "string" }, + { pattern = { "'''", "'''" }, type = "string" }, + { pattern = "0x[%da-fA-F]+", type = "number" }, + { pattern = "-?%d+%d*", type = "number" }, + { pattern = "[%+%-=/%%%*!]", type = "operator" }, + { pattern = "[%a_][%w_]*%f[(]", type = "function" }, + { pattern = "[%a_][%w_]*", type = "symbol" }, + }, + symbols = { + ["if"] = "keyword", + ["then"] = "keyword", + ["else"] = "keyword", + ["elif"] = "keyword", + ["endif"] = "keyword", + ["foreach"] = "keyword", + ["endforeach"] = "keyword", + ["break"] = "keyword", + ["continue"] = "keyword", + ["and"] = "keyword", + ["not"] = "keyword", + ["or"] = "keyword", + ["in"] = "keyword", + ["true"] = "literal", + ["false"] = "literal", + }, +} + |