Jeremy Penner
3d52b70bbc
subrepo: subdir: "vendor/lite" merged: "2783adc" upstream: origin: "https://github.com/jeremypenner/lite.git" branch: "master" commit: "2783adc" git-subrepo: version: "0.4.2" origin: "https://github.com/ingydotnet/git-subrepo" commit: "65fde50"
24 lines
998 B
Lua
24 lines
998 B
Lua
local syntax = require "core.syntax"
|
|
|
|
syntax.add {
|
|
files = { "%.css$" },
|
|
patterns = {
|
|
{ pattern = "\\.", type = "normal" },
|
|
{ pattern = "//.-\n", type = "comment" },
|
|
{ pattern = { "/%*", "%*/" }, type = "comment" },
|
|
{ pattern = { '"', '"', '\\' }, type = "string" },
|
|
{ pattern = { "'", "'", '\\' }, type = "string" },
|
|
{ pattern = "[%a][%w-]*%s*%f[:]", type = "keyword" },
|
|
{ pattern = "#%x+", type = "string" },
|
|
{ pattern = "-?%d+[%d%.]*p[xt]", type = "number" },
|
|
{ pattern = "-?%d+[%d%.]*deg", type = "number" },
|
|
{ pattern = "-?%d+[%d%.]*", type = "number" },
|
|
{ pattern = "[%a_][%w_]*", type = "symbol" },
|
|
{ pattern = "#[%a][%w_-]*", type = "keyword2" },
|
|
{ pattern = "@[%a][%w_-]*", type = "keyword2" },
|
|
{ pattern = "%.[%a][%w_-]*", type = "keyword2" },
|
|
{ pattern = "[{}:]", type = "operator" },
|
|
},
|
|
symbols = {},
|
|
}
|