1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
local info = {
version = 1.002,
comment = "theme for scintilla lpeg lexer for context/metafun",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files",
}
-- we need a proper pipe:
--
-- -- context_path = string.split(os.resultof("mtxrun --find-file context.mkiv"))[1] or ""
-- -- global.trace("OEPS") -- how do we get access to the regular lua extensions
local context_path = "t:/sources" -- c:/data/tex-context/tex/texmf-context/tex/base
local font_name = 'Dejavu Sans Mono'
local font_size = 14
local global = _G
dofile(_LEXERHOME .. '/themes/scite.lua') -- starting point so we miss nothing
module('lexer', package.seeall)
lexer.context = lexer.context or { }
lexer.context.path = context_path
colors = {
red = color('7F', '00', '00'),
green = color('00', '7F', '00'),
blue = color('00', '00', '7F'),
cyan = color('00', '7F', '7F'),
magenta = color('7F', '00', '7F'),
yellow = color('7F', '7F', '00'),
orange = color('B0', '7F', '00'),
--
white = color('FF', 'FF', 'FF'),
light = color('CF', 'CF', 'CF'),
grey = color('80', '80', '80'),
dark = color('4F', '4F', '4F'),
black = color('00', '00', '00'),
--
selection = color('F7', 'F7', 'F7'),
logpanel = color('E7', 'E7', 'E7'),
textpanel = color('CF', 'CF', 'CF'),
linepanel = color('A7', 'A7', 'A7'),
tippanel = color('44', '44', '44'),
--
right = color('00', '00', 'FF'),
wrong = color('FF', '00', '00'),
}
colors.teal = colors.cyan
colors.purple = colors.magenta
style_default = style {
font = font_name,
size = font_size,
fore = colors.black,
back = colors.textpanel,
}
style_nothing = style {
-- empty
}
style_comment = style { fore = colors.yellow }
style_string = style { fore = colors.magenta }
style_char = style { fore = colors.magenta }
style_class = style { fore = colors.black, bold = true }
style_constant = style { fore = colors.cyan, bold = true }
style_definition = style { fore = colors.black, bold = true }
style_error = style { fore = colors.red }
style_function = style { fore = colors.black, bold = true }
style_keyword = style { fore = colors.blue, bold = true }
style_number = style { fore = colors.cyan }
style_operator = style { fore = colors.blue }
style_preproc = style { fore = colors.yellow, bold = true }
style_tag = style { fore = colors.cyan }
style_type = style { fore = colors.blue }
style_variable = style { fore = colors.black }
style_identifier = style_nothing
style_line_number = style { back = colors.linepanel, }
style_bracelight = style { bold = true, fore = colors.orange }
style_bracebad = style { bold = true, fore = colors.orange }
style_indentguide = style { fore = colors.linepanel, back = colors.white }
style_calltip = style { fore = colors.white, back = colors.tippanel }
style_controlchar = style_nothing
style_context_preamble = style_comment
style_context_comment = style_comment
style_context_string = style_string
style_context_default = style_nothing
style_context_number = style_number
style_context_keyword = style_keyword
style_context_quote = style { fore = colors.blue, bold = true }
style_context_primitive = style_keyword
style_context_plain = style { fore = colors.dark, bold = true }
style_context_command = style { fore = colors.green, bold = true }
style_context_embedded = style { fore = colors.black, bold = true }
style_context_user = style { fore = colors.green }
style_context_grouping = style { fore = colors.red }
style_context_specials = style { fore = colors.blue }
style_context_extras = style { fore = colors.yellow }
|