Skip to content

Commit f73796e

Browse files
committed
Remove tail spaces
1 parent ec92672 commit f73796e

File tree

6 files changed

+56
-56
lines changed

6 files changed

+56
-56
lines changed

neosnippets/ada.snip

+44-44
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@ options head
1818
${0}
1919
end $1;
2020

21-
snippet ent
21+
snippet ent
2222
abbr entry {...} when
2323
options head
2424
entry ${1}(${2}) when ${3} is
2525
begin
2626
${0}
2727
end $1;
2828

29-
snippet task
29+
snippet task
3030
abbr task
3131
options head
3232
task ${1} is
3333
entry ${0}
3434
end $1;
3535

36-
snippet taskb
36+
snippet task
3737
abbr task body
3838
options head
3939
task body ${1} is
@@ -42,21 +42,21 @@ options head
4242
${0}
4343
end $1;
4444

45-
snippet acc
45+
snippet ac
4646
abbr accept
4747
options head
4848
accept ${1}(${2}) do
4949
${0}
5050
end $1;
5151

52-
snippet prot
52+
snippet pro
5353
abbr protected type
5454
options head
5555
protected type ${1}(${2}) is
5656
${0}
5757
end $1;
5858

59-
snippet prob
59+
snippet pro
6060
abbr protected body
6161
options head
6262
protected body ${1} is
@@ -65,29 +65,29 @@ options head
6565
${0}
6666
end $1;
6767

68-
snippet gen
68+
snippet ge
6969
abbr generic type
7070
options head
7171
generic
7272
type ${1} is ${2};${0}
7373

74-
snippet ty
74+
snippet t
7575
abbr type
7676
options head
7777
type ${1} is ${2};${0}
7878

79-
snippet tyd
79+
snippet ty
8080
abbr type with default value
8181
options head
8282
type ${1} is ${2}
8383
with Default_Value => ${3};${0}
8484

85-
snippet subty
85+
snippet subt
8686
abbr subtype
8787
options head
8888
subtype ${1} is ${2};${0}
8989

90-
snippet dec
90+
snippet de
9191
abbr declare block
9292
options head
9393
declare
@@ -96,7 +96,7 @@ options head
9696
${0}
9797
end;
9898

99-
snippet decn
99+
snippet dec
100100
abbr declare named block
101101
options head
102102
${1}:
@@ -106,35 +106,35 @@ options head
106106
${0}
107107
end $1;
108108

109-
snippet ifex
109+
snippet ife
110110
abbr if expression
111111
options head
112112
if ${1} then ${2} else ${0}
113113

114-
snippet casex
114+
snippet case
115115
abbr case expression
116116
options head
117117
case ${1} is
118118
when ${2} => ${3},${0}
119119

120-
snippet fora
120+
snippet for
121121
abbr for all
122122
options head
123123
for all ${1} ${2:in} ${3} => ${0}
124124

125-
snippet fors
125+
snippet for
126126
abbr for some
127127
options head
128128
for some ${1} ${2:in} ${3} => ${0}
129129

130-
snippet if
130+
snippet i
131131
abbr if
132132
options head
133133
if ${1} then
134134
${0}
135135
end if;
136136

137-
snippet ife
137+
snippet if
138138
abbr if ... else
139139
options head
140140
if ${1} then
@@ -143,64 +143,64 @@ options head
143143
${0}
144144
end if;
145145

146-
snippet el
146+
snippet e
147147
abbr else
148148
options head
149149
else
150150
${0}
151151

152-
snippet eif
152+
snippet ei
153153
abbr elsif
154154
options head
155155
elsif ${1} then
156156
${0}
157157

158-
snippet wh
158+
snippet w
159159
abbr while
160160
options head
161161
while ${1} loop
162162
${0}
163163
end loop;
164164

165-
snippet nwh
165+
snippet nw
166166
abbr named while
167167
options head
168168
${1}:
169169
while ${2} loop
170170
${0}
171171
end loop $1;
172172

173-
snippet for
173+
snippet fo
174174
abbr for
175175
options head
176176
for ${1:I} in ${2} loop
177177
${0}
178178
end loop;
179179

180-
snippet fore
180+
snippet for
181181
abbr for each
182182
options head
183183
for ${1} of ${2} loop
184184
${0}
185185
end loop;
186186

187-
snippet nfor
187+
snippet nfo
188188
abbr named for
189189
options head
190190
${1}:
191191
for ${2:I} in ${3} loop
192192
${0}
193193
end loop $1;
194194

195-
snippet nfore
195+
snippet nfor
196196
abbr named for each
197197
options head
198198
${1}:
199199
for ${2} of ${3} loop
200200
${0}
201201
end loop $1;
202202

203-
snippet proc
203+
snippet pro
204204
abbr procedure
205205
options head
206206
procedure ${1}(${2}) is
@@ -209,12 +209,12 @@ options head
209209
${0}
210210
end $1;
211211

212-
snippet procd
212+
snippet proc
213213
abbr procedure declaration
214214
options head
215215
procedure ${1};${0}
216216

217-
snippet fun
217+
snippet fu
218218
abbr function
219219
options head
220220
function ${1}(${2}) return ${3} is
@@ -223,94 +223,94 @@ options head
223223
${0}
224224
end $1;
225225

226-
snippet fune
226+
snippet fun
227227
abbr expression function
228228
options head
229229
function ${1} return ${2} is
230230
(${3});${0}
231231

232-
snippet fund
232+
snippet fun
233233
abbr function declaration
234234
options head
235235
function ${1} return ${2};${0}
236236

237-
snippet ret
237+
snippet re
238238
abbr extended return
239239
options head
240240
return ${1} do
241241
${0}
242242
end return;
243243

244-
snippet rec
244+
snippet re
245245
abbr record
246246
options head
247247
record
248248
${0}
249249
end record;
250250

251-
snippet case
251+
snippet cas
252252
abbr case
253253
options head
254254
case ${1} is
255255
when ${2} => ${3};${0}
256256
end case;
257257

258-
snippet whe
258+
snippet wh
259259
abbr when
260260
options head
261261
when ${1} => ${2};${0}
262262

263-
snippet wheo
263+
snippet whe
264264
abbr when others
265265
options head
266266
when others => ${1};${0}
267267

268-
snippet lo
268+
snippet l
269269
abbr loop
270270
options head
271271
loop
272272
${0}
273273
end loop;
274274

275-
snippet nlo
275+
snippet nl
276276
abbr named loop
277277
options head
278278
${1}:
279279
loop
280280
${0}
281281
end loop $1;
282282

283-
snippet ex
283+
snippet e
284284
abbr exit when
285285
options head
286286
exit when ${1};
287287
${0}
288288

289-
snippet put
289+
snippet pu
290290
abbr Ada.Text_IO.Put
291291
options head
292292
Ada.Text_IO.Put(${1});
293293
${0}
294294

295-
snippet putl
295+
snippet put
296296
abbr Ada.Text_IO.Put_Line
297297
options head
298298
Ada.Text_IO.Put_Line(${1});
299299
${0}
300300

301-
snippet get
301+
snippet ge
302302
abbr Ada.Text_IO.Get
303303
options head
304304
Ada.Text_IO.Get(${1});
305305
${0}
306306

307-
snippet getl
307+
snippet get
308308
abbr Ada.Text_IO.Get_Line
309309
options head
310310
Ada.Text_IO.Get_Line(${1});
311311
${0}
312312

313-
snippet newline
313+
snippet newlin
314314
abbr Ada.Text_IO.New_Line
315315
options head
316316
Ada.Text_IO.New_Line(${1:1});

neosnippets/cpp.snip

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ alias #inc2, #include2
1111

1212
snippet template
1313
abbr template <T>
14-
template<typename ${1:T}>
14+
template<typename ${1:T}> ${0}
1515

1616
snippet class
1717
abbr class {}

neosnippets/fortran.snip

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ options head
8383
real, intent(out) ::
8484

8585
snippet ind
86-
abbr integer dimension
86+
abbr integer dimension
8787
options head
8888
integer, dimension(${1::})${2:#:, allocatable} :: ${3}
8989

@@ -157,7 +157,7 @@ options head
157157
close($1)
158158

159159
snippet se
160-
abbr select case
160+
abbr select case
161161
options head
162162
select case (${1})
163163
${2}

neosnippets/objc.snip

+3-3
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ abbr KVCArry
182182
[${3}} addObject:anObject];
183183
}
184184

185-
- (void)insertObject:($2)anObject in$1AtIndex:(unsigned int)i
185+
- (void)insertObject:($2)anObject in$1AtIndex:(unsigned int)i
186186
{
187187
[${3} insertObject:anObject atIndex:i];
188188
}
@@ -199,7 +199,7 @@ abbr KVCArry
199199

200200
- (void)removeObjectFrom${1}AtIndex:(unsigned int)i
201201
{
202-
[${3} removeObjectAtIndex:i];
202+
[${3} removeObjectAtIndex:i];
203203
}
204204

205205
- (unsigned int)countOf${1}
@@ -313,7 +313,7 @@ snippet del
313313

314314

315315
snippet format
316-
[NSString stringWithFormat:@"${1}", ${2}]${0}
316+
[NSString stringWithFormat:@"${1}", ${2}]${0}
317317

318318

319319
snippet save

neosnippets/perl.snip

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
snippet perl
1+
snippet perl
22
#!/opt/local/bin/perl
33

44
use strict;

0 commit comments

Comments
 (0)