You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
597 B
18 lines
597 B
3 years ago
|
local syntax = require "core.syntax"
|
||
|
|
||
|
syntax.add {
|
||
|
files = { "Makefile", "makefile", "%.mk$" },
|
||
|
comment = "#",
|
||
|
patterns = {
|
||
|
{ pattern = "#.*\n", type = "comment" },
|
||
|
{ pattern = [[\.]], type = "normal" },
|
||
|
{ pattern = "$[@^<%%?+|*]", type = "keyword2" },
|
||
|
{ pattern = "$%(.-%)", type = "variable" },
|
||
|
{ pattern = "%f[%w_][%d%.]+%f[^%w_]", type = "number" },
|
||
|
{ pattern = "%..*:", type = "keyword2" },
|
||
|
{ pattern = ".*:", type = "function" },
|
||
|
},
|
||
|
symbols = {
|
||
|
},
|
||
|
}
|