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"
16 lines
517 B
Lua
16 lines
517 B
Lua
local syntax = require "core.syntax"
|
|
|
|
syntax.add {
|
|
files = { "%.cmake$", "CMakeLists.txt$" },
|
|
comment = "//",
|
|
patterns = {
|
|
{ pattern = { "#", "[^\\]\n" }, type = "comment" },
|
|
{ pattern = { '"', '"', '\\' }, type = "string" },
|
|
{ pattern = { "'", "'", '\\' }, type = "string" },
|
|
{ pattern = "[%a_][%w_]*%f[(]", type = "function" },
|
|
{ pattern = "[%a_][%w_]*", type = "normal" },
|
|
{ pattern = "%${[%a_][%w_]*%}", type = "operator" },
|
|
},
|
|
symbols = {},
|
|
}
|