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.
16 lines
515 B
16 lines
515 B
local syntax = require "core.syntax"
|
|
|
|
syntax.add {
|
|
files = { "%.tex$" },
|
|
comment = "%%",
|
|
patterns = {
|
|
{ pattern = {"%%", "\n"}, type = "comment" },
|
|
{ pattern = "&", type = "operator" },
|
|
{ pattern = "\\\\", type = "operator" },
|
|
{ pattern = {"%$", "%$"}, type = "operator" },
|
|
{ pattern = {"\\%[", "\\]"}, type = "operator" },
|
|
{ pattern = {"{", "}"}, type = "keyword" },
|
|
{ pattern = "\\%w*", type = "keyword2" },
|
|
},
|
|
symbols = {}
|
|
}
|
|
|