aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--plugins/language_meson.lua35
2 files changed, 36 insertions, 0 deletions
diff --git a/README.md b/README.md
index 227ec1f..c45f6a8 100644
--- a/README.md
+++ b/README.md
@@ -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",
+ },
+}
+