blob: 21cbb97336e1400f34224d6abe263a5a962fe828 (
plain) (
blame)
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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
|
(identifier) @variable
; Assume all-caps names are constants
((identifier) @constant
(#lua-match? @constant "^[A-Z][A-Z0-9_]+$"))
; Function definitions/declarations
(function_definition
name: (identifier) @function)
(function_declaration
name: (identifier) @function)
(parameter_declaration
name: (identifier) @variable.parameter)
; Methods / Properties
(field_access
field: (identifier) @variable.member)
; Function calls
(call_expression
function: (identifier) @function)
(call_expression
function: (field_access
field: (identifier) @function.method.call))
; Types
[
(builtin_type)
(any_type)
] @type.builtin
(type
(identifier) @type)
; Variables
(variable_declaration
name: (identifier) @variable)
(old_variable_declaration
name: (identifier) @variable)
[
(system_lib_string)
(string_literal)
] @string
; Preprocessor
[
"#include"
"#tryinclude"
] @keyword.import
[
(preproc_assert)
(preproc_pragma)
(preproc_if)
(preproc_else)
(preproc_elseif)
(preproc_endinput)
(preproc_endif)
(preproc_error)
(preproc_warning)
] @keyword.directive
[
"#define"
"#undef"
] @keyword.directive.define
(macro_param) @variable.parameter
(preproc_define
name: (identifier) @constant)
(preproc_macro
name: (identifier) @function.macro)
(preproc_undefine
name: (identifier) @constant)
; Expressions
(view_as) @function.builtin
(sizeof_expression) @function.macro
[
(this)
; https://github.com/alliedmodders/sourcemod/blob/5c0ae11a4619e9cba93478683c7737253ea93ba6/plugins/include/handles.inc#L78
(hardcoded_symbol)
] @variable.builtin
; Comments
(comment) @comment @spell
; General
(parameter_declaration
defaultValue: (identifier) @constant)
[
(fixed_dimension)
(dimension)
] @punctuation.bracket
(escape_sequence) @string.escape
; Constructors
(new_expression
class: (identifier) @type
arguments: (call_arguments) @constructor)
; Methodmaps
(methodmap
name: (identifier) @type)
(methodmap
inherits: (identifier) @type)
(methodmap_method_constructor
name: (identifier) @constructor)
(methodmap_method
name: (identifier) @function.method)
(methodmap_native
name: (identifier) @function.method)
(methodmap_property
name: (identifier) @property)
[
(methodmap_property_getter)
(methodmap_property_setter)
] @function.method
; Enum structs
(enum_struct
name: (identifier) @type)
(enum_struct_field
name: (identifier) @variable.member)
(enum_struct_method
name: (identifier) @function.method)
; Non-type Keywords
(variable_storage_class) @keyword.modifier
(visibility) @keyword.modifier
(assertion) @function.builtin
(function_declaration_kind) @keyword.function
[
"new"
"delete"
] @keyword.operator
[
"."
","
] @punctuation.delimiter
; Operators
[
"+"
"-"
"*"
"/"
"%"
"++"
"--"
"="
"+="
"-="
"*="
"/="
"=="
"!="
"<"
">"
">="
"<="
"!"
"&&"
"||"
"&"
"|"
"~"
"^"
"<<"
">>"
">>>"
"|="
"&="
"^="
"~="
"<<="
">>="
"..."
(ignore_argument)
(scope_access)
(rest_operator)
] @operator
; public Plugin myinfo
(struct_declaration
name: (identifier) @variable.builtin)
; Typedef/Typedef
(typedef
name: (identifier) @type)
(functag
name: (identifier) @type)
(funcenum
name: (identifier) @type)
(typeset
name: (identifier) @type)
(typedef_expression) @keyword.function ; function void(int x)
; Enums
(enum
name: (identifier) @type)
(enum_entry
name: (identifier) @constant)
(enum_entry
value: (_) @constant)
; Literals
(int_literal) @number
(char_literal) @character
(float_literal) @number.float
(string_literal) @string
(array_literal) @punctuation.bracket
(bool_literal) @boolean
(null) @constant.builtin
((identifier) @constant.builtin
(#eq? @constant.builtin "INVALID_HANDLE"))
; Keywords
"return" @keyword.return
[
"if"
"else"
"case"
"default"
"switch"
] @keyword.conditional
[
"do"
"while"
"for"
"continue"
"break"
] @keyword.repeat
[
"__nullable__"
"defined"
"delete"
"functag"
"get"
"methodmap"
"new"
"property"
"public"
"set"
"typeset"
"void"
] @keyword
[
"enum"
"funcenum"
"struct"
"typedef"
] @keyword.type
[
"const"
"native"
"static"
"stock"
"forward"
] @keyword.modifier
|