summaryrefslogtreecommitdiff
path: root/context/data/scite/context/lexers/scite-context-lexer-tex-web.lua
blob: 5d8859c2649495457180dda92f08ba9c47bacec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
local info = {
    version   = 1.002,
    comment   = "scintilla lpeg lexer for tex web",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files",
}

local lexer           = require("lexer")
local context         = lexer.context
local patterns        = context.patterns

local texweblexer     = lexer.new("tex-web","scite-context-lexer-tex")
local texlexer        = lexer.load("scite-context-lexer-tex")

-- can probably be done nicer now, a bit of a hack

texweblexer._rules       = texlexer._rules_web
texweblexer._tokenstyles = texlexer._tokenstyles
texweblexer._foldsymbols = texlexer._foldsymbols
texweblexer._directives  = texlexer._directives

return texweblexer