aboutsummaryrefslogtreecommitdiff
path: root/plugins/language_tex.lua
blob: 3f9a5fa5ddad6fa8fd5ee7896af904d113fcab1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- mod-version:1 -- lite-xl 1.16
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 = {}
}