blob: accc65b4cfb500a10597843529d34a94583a2131 (
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
|
; comments highlighting
(comment) @comment
; keyword highlighting
(keyword_def) @keyword
(keyword_enum) @keyword
(keyword_ref) @keyword
; identify blocks and definitions
(definition) @function
; for identifiers
(identifier) @variable
(type) @keyword
; Highlight special types for database/data types
("Project" ) @type
("Table" ) @type
("TableGroup" ) @type
("database_type" ) @variable
; string and number constants
("'''") @constant.character.escape
(string) @string
(number) @constant.numeric
; brackets
[
"("
")"
"{"
"}"
"["
"]"
] @punctuation.bracket
; brackets
[
":"
"."
","
] @punctuation.delimiter
|