diff options
author | rxi <rxi@users.noreply.github.com> | 2020-06-07 21:40:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-07 21:40:31 +0100 |
commit | e4b21e6c85e541c53299d5c652b932758bb1f4b7 (patch) | |
tree | df73d27feafd42612842988596c830e9a445e296 /plugins | |
parent | af8949684146aeecde213873020fbe0618b40d4b (diff) | |
parent | d9614058384a3f9fd8aac5217751c15ce45b2f96 (diff) | |
download | lite-xl-plugins-e4b21e6c85e541c53299d5c652b932758bb1f4b7.tar.gz lite-xl-plugins-e4b21e6c85e541c53299d5c652b932758bb1f4b7.zip |
Merge pull request #53 from franko/master
Add plugin for Meson build language
Diffstat (limited to 'plugins')
-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", + }, +} + |