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
|
- match: '\b(-)?[0-9.]+\b'
scope: constant.numeric
# Bookmarks
- match: '^!!.*|^\[\+\+\].*'
scope: bookmark
# Keywords are if, else.
# Note that blackslashes don't need to be escaped within single quoted
# strings in YAML. When using single quoted strings, only single quotes
# need to be escaped: this is done by using two single quotes next to each
# other.
- match: '\b(?:if|else|and|or|not|in)\b'
scope: keyword.python
- match: '\b(?:True|False|None)\b'
scope: constant.language
- match: '\b(?:spell|morph|morphex|stem|textarea0?\w*|before0?\w*|after0?\w*|word|option|define|select|exclude|analysex?|apposition|is[A-Z]\w+|rewriteSubject|checkD\w+|getD\w+|has[A-Z]\w+|sugg[A-Z]\w+|switch[A-Z]\w+|ceOrCet|formatN\w+|mbUnit)\b'
scope: entity.name.function
- match: '\b(?:replace|endswith|startswith|search|upper|lower|capitalize|strip|rstrip|is(?:upper|lower|digit|title))\b'
scope: support.function
- match: '\becho\b'
scope: support.function.debug
- match: '\bre\b'
scope: support.class
# Rule options
- match: '^__[\[<]([isu])[\]>](/\w+|)(\(\w+\)|)(![0-9]|)__|</?js>'
scope: rule.options
captures:
1: rule.casing
2: rule.optionname
3: rule.rulename
4: rule.priority
# Definitions and options
- match: '^OPT(?:GROUP|LANG|PRIORITY)/|^OPTSOFTWARE:'
scope: options.command
- match: '^OPT(?:LABEL|)/'
scope: options.parameter
|
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
>
>
>
>
>
>
>
>
>
>
>
>
|
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
|
- match: '\b(-)?[0-9.]+\b'
scope: constant.numeric
# Bookmarks
- match: '^!!.*|^\[\+\+\].*'
scope: bookmark
# Bookmarks
- match: '^GRAPH_NAME:.*'
scope: bookmark
# Graph
- match: '^@@@@GRAPH: *(\w+) *'
scope: graphline
captures:
1: string.graphname
- match: '^@@@@(?:END_GRAPH *| *)'
scope: graphline
# Keywords are if, else.
# Note that blackslashes don't need to be escaped within single quoted
# strings in YAML. When using single quoted strings, only single quotes
# need to be escaped: this is done by using two single quotes next to each
# other.
- match: '\b(?:if|else|and|or|not|in)\b'
scope: keyword.python
- match: '\b(?:True|False|None)\b'
scope: constant.language
- match: '\b(?:spell|morph|morphex|g_morph|stem|textarea0?\w*|before0?\w*|after0?\w*|word|option|define|select|exclude|g_define|g_select|g_exclude|analysex?|apposition|is[A-Z]\w+|rewriteSubject|checkD\w+|getD\w+|has[A-Z]\w+|sugg[A-Z]\w+|switch[A-Z]\w+|ceOrCet|formatN\w+|mbUnit)\b'
scope: entity.name.function
- match: '\b(?:replace|endswith|startswith|search|upper|lower|capitalize|strip|rstrip|is(?:upper|lower|digit|title))\b'
scope: support.function
- match: '\becho\b'
scope: support.function.debug
- match: '\bre\b'
scope: support.class
# Regex rule option
- match: '^__[\[<]([isu])[\]>](/\w+|)(\(\w+\)|)(![0-9]|)__|</?js>'
scope: rule.options
captures:
1: rule.casing
2: rule.optionname
3: rule.rulename
4: rule.priority
# Graph rules option
- match: '^__(\w+)(![0-9]|)__'
scope: rule.options
captures:
1: rule.rulename2
2: rule.priority
- match: '/(\w+)/'
scope: rule.options
captures:
1: rule.optionname
# Definitions and options
- match: '^OPT(?:GROUP|LANG|PRIORITY)/|^OPTSOFTWARE:'
scope: options.command
- match: '^OPT(?:LABEL|)/'
scope: options.parameter
|
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# rule delimiters
- match: '<<-|>>>'
scope: keyword.action
- match: '__also__'
scope: keyword.condition.green
- match: '__else__'
scope: keyword.condition.red
- match: '-(\d*)>>'
scope: keyword.error
captures:
1: keyword.error.group
- match: '~(\d*)>>'
scope: keyword.textprocessor
captures:
1: keyword.textprocessor.group
- match: '=>>'
scope: keyword.disambiguator
# Escaped chars
- match: '\\(?:\d+|w|d|b|n|s|t)'
scope: constant.character.escape
# URL
- match: '\| ?https?://[\w./%?&=#+-]+'
scope: string.other
# Example errors
- match: '{{.+?}}'
scope: message.error
# special chars
- match: '[@=*^?!:+<>]'
scope: keyword.other
- match: '\(\?(?:[:=!]|<!)|[(|)]'
scope: keyword.parenthesis
- match: '\[|[]{}]'
scope: keyword.brackets
|
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
# rule delimiters
- match: '<<-|>>>'
scope: keyword.action
- match: '__also__'
scope: keyword.condition.green
- match: '__else__'
scope: keyword.condition.red
- match: '-(\d*(?::\d+|))>>'
scope: keyword.error
captures:
1: keyword.error.group
- match: '~(\d*(?::\d+|))>>'
scope: keyword.textprocessor
captures:
1: keyword.textprocessor.group
- match: '=>>'
scope: keyword.disambiguator
# Tokens
- match: '(>)\w+'
scope: string.lemma
captures:
1: keyword.valid
- match: '(~)(?!(?:\d+(?::\d+|)|)>>)[^\s]+'
scope: string.regex
captures:
1: keyword.valid
- match: '(@)([^@][^\s¬]+)'
scope: string.morph
captures:
1: keyword.valid
2: string.morph.pattern
- match: '(¬)(\S+)'
scope: string.morph
captures:
1: keyword.invalid
2: string.morph.antipattern
# Escaped chars
- match: '\\(?:\d+|w|d|b|n|s|t)'
scope: constant.character.escape
# URL
- match: '\| ?https?://[\w./%?&=#+-]+'
scope: string.other
# Example errors
- match: '{{.+?}}'
scope: message.error
# special chars
- match: '[@=*^?!:+<>~]'
scope: keyword.other
- match: '\(\?(?:[:=!]|<!)|[(|)]'
scope: keyword.parenthesis
- match: '\[|[]{}]'
scope: keyword.brackets
|