Jeremy Penner
cb5132f393
subrepo: subdir: "vendor/lite-plugins" merged: "de4227d" upstream: origin: "https://github.com/rxi/lite-plugins" branch: "master" commit: "de4227d" git-subrepo: version: "0.4.2" origin: "https://github.com/ingydotnet/git-subrepo" commit: "65fde50"
36 lines
1.2 KiB
Lua
36 lines
1.2 KiB
Lua
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",
|
|
},
|
|
}
|
|
|