Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T06:27:56.396Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

highlights.scm

157 lines · 1.7 KB · text
1[
2  "const"
3  "enum"
4  "extern"
5  "inline"
6  "sizeof"
7  "static"
8  "struct"
9  "typedef"
10  "union"
11  "volatile"
12] @keyword
13
14[
15  "break"
16  "case"
17  "continue"
18  "default"
19  "do"
20  "else"
21  "for"
22  "goto"
23  "if"
24  "return"
25  "switch"
26  "while"
27] @keyword.control
28
29[
30  "#define"
31  "#elif"
32  "#elifdef"
33  "#elifndef"
34  "#else"
35  "#endif"
36  "#if"
37  "#ifdef"
38  "#ifndef"
39  "#include"
40  (preproc_directive)
41] @keyword.preproc @preproc
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] @operator
81
82[
83  "."
84  ";"
85  ","
86] @punctuation.delimiter
87
88[
89  "{"
90  "}"
91  "("
92  ")"
93  "["
94  "]"
95] @punctuation.bracket
96
97[
98  (string_literal)
99  (system_lib_string)
100  (char_literal)
101] @string
102
103(escape_sequence) @string.escape
104
105(comment) @comment
106
107(number_literal) @number
108
109[
110  (true)
111  (false)
112] @boolean
113
114(null) @constant.builtin
115
116(identifier) @variable
117
118((identifier) @constant
119  (#match? @constant "^_*[A-Z][A-Z\\d_]*$"))
120
121(call_expression
122  function: (identifier) @function)
123
124(call_expression
125  function: (field_expression
126    field: (field_identifier) @function))
127
128(function_declarator
129  declarator: (identifier) @function)
130
131(preproc_function_def
132  name: (identifier) @function.special)
133
134(field_identifier) @property
135
136(statement_identifier) @label
137
138[
139  (type_identifier)
140  (primitive_type)
141  (sized_type_specifier)
142] @type
143
144; GNU __attribute__
145(attribute_specifier) @attribute
146
147(attribute_specifier
148  (argument_list
149    (identifier) @attribute))
150
151; C23 [[attributes]]
152(attribute
153  prefix: (identifier) @attribute)
154
155(attribute
156  name: (identifier) @attribute)
157
Served at tenant.openagents/omega Member data and write actions are omitted.