File tree Expand file tree Collapse file tree 1 file changed +61
-62
lines changed Expand file tree Collapse file tree 1 file changed +61
-62
lines changed Original file line number Diff line number Diff line change @@ -92,110 +92,96 @@ let s:zig_syntax_keywords = {
92
92
\ , " callconv"
93
93
\ , " noalias" ]
94
94
\ , ' zigBuiltinFn' : [" align"
95
+ \ , " @addrSpaceCast"
95
96
\ , " @addWithOverflow"
97
+ \ , " @alignCast"
98
+ \ , " @alignOf"
96
99
\ , " @as"
97
100
\ , " @atomicLoad"
101
+ \ , " @atomicRmw"
98
102
\ , " @atomicStore"
99
103
\ , " @bitCast"
104
+ \ , " @bitOffsetOf"
105
+ \ , " @bitSizeOf"
106
+ \ , " @branchHint"
100
107
\ , " @breakpoint"
101
- \ , " @trap"
102
- \ , " @alignCast"
103
- \ , " @alignOf"
108
+ \ , " @mulAdd"
109
+ \ , " @byteSwap"
110
+ \ , " @bitReverse"
111
+ \ , " @offsetOf"
112
+ \ , " @call"
104
113
\ , " @cDefine"
105
114
\ , " @cImport"
106
115
\ , " @cInclude"
107
- \ , " @cUndef"
108
116
\ , " @clz"
109
- \ , " @cmpxchgWeak"
110
117
\ , " @cmpxchgStrong"
118
+ \ , " @cmpxchgWeak"
111
119
\ , " @compileError"
112
120
\ , " @compileLog"
113
121
\ , " @constCast"
114
122
\ , " @ctz"
123
+ \ , " @cUndef"
124
+ \ , " @cVaArg"
125
+ \ , " @cVaCopy"
126
+ \ , " @cVaEnd"
127
+ \ , " @cVaStart"
115
128
\ , " @disableInstrumentation"
116
- \ , " @popCount "
129
+ \ , " @disableIntrinsics "
117
130
\ , " @divExact"
118
131
\ , " @divFloor"
119
132
\ , " @divTrunc"
120
133
\ , " @embedFile"
121
- \ , " @export"
122
- \ , " @extern"
123
- \ , " @tagName"
124
- \ , " @TagType"
134
+ \ , " @enumFromInt"
135
+ \ , " @errorFromInt"
125
136
\ , " @errorName"
126
- \ , " @call"
127
137
\ , " @errorReturnTrace"
128
- \ , " @fence"
129
- \ , " @fieldParentPtr"
138
+ \ , " @errorCast"
139
+ \ , " @export"
140
+ \ , " @extern"
130
141
\ , " @field"
142
+ \ , " @fieldParentPtr"
131
143
\ , " @FieldType"
132
- \ , " @unionInit"
144
+ \ , " @floatCast"
145
+ \ , " @floatFromInt"
133
146
\ , " @frameAddress"
147
+ \ , " @hasDecl"
148
+ \ , " @hasField"
134
149
\ , " @import"
135
150
\ , " @inComptime"
136
- \ , " @newStackCall"
137
- \ , " @asyncCall"
138
- \ , " @ptrFromInt"
151
+ \ , " @intCast"
152
+ \ , " @intFromBool"
153
+ \ , " @intFromEnum"
154
+ \ , " @intFromError"
155
+ \ , " @intFromFloat"
156
+ \ , " @intFromPtr"
139
157
\ , " @max"
140
- \ , " @min"
141
158
\ , " @memcpy"
142
159
\ , " @memset"
160
+ \ , " @min"
161
+ \ , " @wasmMemorySize"
162
+ \ , " @wasmMemoryGrow"
143
163
\ , " @mod"
144
- \ , " @mulAdd"
145
164
\ , " @mulWithOverflow"
146
- \ , " @splat"
147
- \ , " @src"
148
- \ , " @bitOffsetOf"
149
- \ , " @byteOffsetOf"
150
- \ , " @offsetOf"
151
- \ , " @OpaqueType"
152
165
\ , " @panic"
166
+ \ , " @popCount"
153
167
\ , " @prefetch"
154
168
\ , " @ptrCast"
155
- \ , " @intFromPtr "
169
+ \ , " @ptrFromInt "
156
170
\ , " @rem"
157
171
\ , " @returnAddress"
158
- \ , " @branchHint"
159
- \ , " @Type"
160
- \ , " @shuffle"
161
- \ , " @reduce"
162
172
\ , " @select"
163
- \ , " @setRuntimeSafety"
164
173
\ , " @setEvalBranchQuota"
165
174
\ , " @setFloatMode"
175
+ \ , " @setRuntimeSafety"
166
176
\ , " @shlExact"
167
- \ , " @This"
168
- \ , " @hasDecl"
169
- \ , " @hasField"
170
177
\ , " @shlWithOverflow"
171
178
\ , " @shrExact"
179
+ \ , " @shuffle"
172
180
\ , " @sizeOf"
173
- \ , " @bitSizeOf"
181
+ \ , " @splat"
182
+ \ , " @reduce"
183
+ \ , " @src"
174
184
\ , " @sqrt"
175
- \ , " @byteSwap"
176
- \ , " @subWithOverflow"
177
- \ , " @intCast"
178
- \ , " @floatCast"
179
- \ , " @floatFromInt"
180
- \ , " @intFromFloat"
181
- \ , " @intFromBool"
182
- \ , " @errorCast"
183
- \ , " @truncate"
184
- \ , " @typeInfo"
185
- \ , " @typeName"
186
- \ , " @TypeOf"
187
- \ , " @atomicRmw"
188
- \ , " @errorFromInt"
189
- \ , " @intFromError"
190
- \ , " @enumFromInt"
191
- \ , " @intFromEnum"
192
- \ , " @setAlignStack"
193
- \ , " @frame"
194
- \ , " @Frame"
195
- \ , " @frameSize"
196
- \ , " @bitReverse"
197
- \ , " @Vector"
198
- \ , " @volatileCast"
199
185
\ , " @sin"
200
186
\ , " @cos"
201
187
\ , " @tan"
@@ -208,9 +194,22 @@ let s:zig_syntax_keywords = {
208
194
\ , " @floor"
209
195
\ , " @ceil"
210
196
\ , " @trunc"
211
- \ , " @wasmMemorySize"
212
- \ , " @wasmMemoryGrow"
213
- \ , " @round" ]
197
+ \ , " @round"
198
+ \ , " @subWithOverflow"
199
+ \ , " @tagName"
200
+ \ , " @This"
201
+ \ , " @trap"
202
+ \ , " @truncate"
203
+ \ , " @Type"
204
+ \ , " @typeInfo"
205
+ \ , " @typeName"
206
+ \ , " @TypeOf"
207
+ \ , " @unionInit"
208
+ \ , " @Vector"
209
+ \ , " @volatileCast"
210
+ \ , " @workGroupId"
211
+ \ , " @workGroupSize"
212
+ \ , " @workItemId" ]
214
213
\ }
215
214
216
215
function ! s: syntax_keyword (dict )
You can’t perform that action at this time.
0 commit comments