summaryrefslogtreecommitdiff
path: root/context/data/textadept/context/lexers/scite-context-lexer-tex-web.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2021-10-08 20:46:55 +0200
committerContext Git Mirror Bot <phg@phi-gamma.net>2021-10-08 20:46:55 +0200
commit778f381ba6a448ab00d67994a412dd4226d43238 (patch)
treed9dade45016a572e6c22521bfb165f9829ac3192 /context/data/textadept/context/lexers/scite-context-lexer-tex-web.lua
parent2073fe5d88215dddd9a9e6421afaea7ab7db955a (diff)
downloadcontext-778f381ba6a448ab00d67994a412dd4226d43238.tar.gz
2021-10-08 20:07:00
Diffstat (limited to 'context/data/textadept/context/lexers/scite-context-lexer-tex-web.lua')
-rw-r--r--context/data/textadept/context/lexers/scite-context-lexer-tex-web.lua23
1 files changed, 0 insertions, 23 deletions
diff --git a/context/data/textadept/context/lexers/scite-context-lexer-tex-web.lua b/context/data/textadept/context/lexers/scite-context-lexer-tex-web.lua
deleted file mode 100644
index 88499a9c2..000000000
--- a/context/data/textadept/context/lexers/scite-context-lexer-tex-web.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-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("scite-context-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