-
Notifications
You must be signed in to change notification settings - Fork 230
/
Copy pathada.snip
304 lines (257 loc) · 4.38 KB
/
ada.snip
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
304
snippet with
abbr with ...;...
options head
with ${1};${2}
snippet package
abbr package {NAME} is {...} end
options head
package ${1} is
${0}
end $1;
snippet package_body
abbr package body {NAME} is {...} end
options head
package body ${1} is
${0}
end $1;
snippet entry
abbr entry {...} when
options head
entry ${1}(${2}) when ${3} is
begin
${0}
end $1;
snippet task
options head
task ${1} is
entry ${0}
end $1;
snippet task_body
abbr task body
options head
task body ${1} is
${2}
begin
${0}
end $1;
snippet accept
options head
accept ${1}(${2}) do
${0}
end $1;
snippet protected_type
abbr protected type
options head
protected type ${1}(${2}) is
${0}
end $1;
snippet protected_body
abbr protected body
options head
protected body ${1} is
${2}
begin
${0}
end $1;
snippet generic
abbr generic type
options head
generic
type ${1} is ${2};${0}
snippet type
options head
type ${1} is ${2};${0}
snippet type_default
abbr type with default value
options head
type ${1} is ${2}
with Default_Value => ${3};${0}
snippet subtype
options head
subtype ${1} is ${2};${0}
snippet declare
abbr declare block
options head
declare
${1}
begin
${0}
end;
snippet declare_named
abbr declare named block
options head
${1}:
declare
${2}
begin
${0}
end $1;
snippet ife
abbr if expression
options head
if ${1} then ${2} else ${0}
snippet case_expression
abbr case expression
options head
case ${1} is
when ${2} => ${3},${0}
snippet for_all
abbr for all
options head
for all ${1} ${2:in} ${3} => ${0}
snippet for_some
abbr for some
options head
for some ${1} ${2:in} ${3} => ${0}
snippet if
options head
if ${1} then
${0}
end if;
snippet ifelse
abbr if ... else
options head
if ${1} then
${2}
else
${0}
end if;
snippet else
options head
else
${0}
snippet elseif
alias ei
options head
elsif ${1} then
${0}
snippet while
alias w
options head
while ${1} loop
${0}
end loop;
snippet named_while
abbr named while
options head
${1}:
while ${2} loop
${0}
end loop $1;
snippet for
options head
for ${1:I} in ${2} loop
${0}
end loop;
snippet for_each
abbr for each
options head
for ${1} of ${2} loop
${0}
end loop;
snippet named_for
abbr named for
options head
${1}:
for ${2:I} in ${3} loop
${0}
end loop $1;
snippet named_for_each
abbr named for each
options head
${1}:
for ${2} of ${3} loop
${0}
end loop $1;
snippet procedure
options head
procedure ${1}(${2}) is
${3}
begin
${0}
end $1;
snippet procedure_declare
abbr procedure declaration
options head
procedure ${1};${0}
snippet function
options head
function ${1}(${2}) return ${3} is
${4}
begin
${0}
end $1;
snippet function_expr
abbr expression function
options head
function ${1} return ${2} is
(${3});${0}
snippet function_declare
abbr function declaration
options head
function ${1} return ${2};${0}
snippet return
abbr extended return
options head
return ${1} do
${0}
end return;
snippet record
options head
record
${0}
end record;
snippet case
options head
case ${1} is
when ${2} => ${3};${0}
end case;
snippet when
options head
when ${1} => ${2};${0}
snippet when_others
abbr when others
options head
when others => ${1};${0}
snippet loop
options head
loop
${0}
end loop;
snippet named_loop
abbr named loop
options head
${1}:
loop
${0}
end loop $1;
snippet exit_when
abbr exit when
options head
exit when ${1};
${0}
snippet put
abbr Ada.Text_IO.Put
options head
Ada.Text_IO.Put(${1});
${0}
snippet put_line
abbr Ada.Text_IO.Put_Line
options head
Ada.Text_IO.Put_Line(${1});
${0}
snippet get
abbr Ada.Text_IO.Get
options head
Ada.Text_IO.Get(${1});
${0}
snippet get_line
abbr Ada.Text_IO.Get_Line
options head
Ada.Text_IO.Get_Line(${1});
${0}
snippet newline
abbr Ada.Text_IO.New_Line
options head
Ada.Text_IO.New_Line(${1:1});
${0}