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 | |
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
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | plugins/language_meson.lua | 35 |
2 files changed, 36 insertions, 0 deletions
@@ -42,6 +42,7 @@ Plugin | Description [`language_hs`](plugins/language_hs.lua?raw=1) | Syntax for the [Haskell](https://www.haskell.org/) programming language [`language_jiyu`](plugins/language_jiyu.lua?raw=1) | Syntax for the [jiyu](https://github.com/machinamentum/jiyu) programming language [`language_make`](plugins/language_make.lua?raw=1) | Syntax for the Make build system language +[`language_meson`](plugins/language_meson.lua?raw=1) | Syntax for the [Meson](https://mesonbuild.com) build system language [`language_odin`](plugins/language_odin.lua?raw=1) | Syntax for the [Odin](https://github.com/odin-lang/Odin) programming language [`language_php`](plugins/language_php.lua?raw=1) | Syntax for the [PHP](https://php.net) programming language [`language_psql`](plugins/language_psql.lua?raw=1) | Syntax for the postgresql database access language 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", + }, +} + |