File tree 6 files changed +16
-19
lines changed
6 files changed +16
-19
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ snippet package
7
7
abbr package {NAME} is {...} end
8
8
options head
9
9
package ${1} is
10
- ${0}
11
- end $1 ;
10
+ ${0}
11
+ end $1 ;
12
12
13
13
14
14
snippet package_body
15
15
abbr package body {NAME} is {...} end
16
16
options head
17
17
package body ${1} is
18
- ${0}
18
+ ${0}
19
19
end $1 ;
20
20
21
21
snippet entry
@@ -271,34 +271,34 @@ snippet exit_when
271
271
abbr exit when
272
272
options head
273
273
exit when ${1} ;
274
- ${0}
274
+ ${0}
275
275
276
276
snippet put
277
277
abbr Ada.Text_IO.Put
278
278
options head
279
279
Ada.Text_IO.Put(${1} );
280
- ${0}
280
+ ${0}
281
281
282
282
snippet put_line
283
283
abbr Ada.Text_IO.Put_Line
284
284
options head
285
285
Ada.Text_IO.Put_Line(${1} );
286
- ${0}
286
+ ${0}
287
287
288
288
snippet get
289
289
abbr Ada.Text_IO.Get
290
290
options head
291
291
Ada.Text_IO.Get(${1} );
292
- ${0}
292
+ ${0}
293
293
294
294
snippet get_line
295
295
abbr Ada.Text_IO.Get_Line
296
296
options head
297
297
Ada.Text_IO.Get_Line(${1} );
298
- ${0}
298
+ ${0}
299
299
300
300
snippet newline
301
301
abbr Ada.Text_IO.New_Line
302
302
options head
303
303
Ada.Text_IO.New_Line(${1: 1 } );
304
- ${0}
304
+ ${0}
Original file line number Diff line number Diff line change @@ -68,9 +68,9 @@ abbr static_assert(,"")
68
68
static_assert( ${1} , "${2} " );${0}
69
69
70
70
delete namespace
71
- options head
72
71
snippet namespace
73
72
abbr namespace {}
73
+ options head
74
74
namespace ${1: #:name } {
75
75
${0: TARGET }
76
76
} // namespace $1
Original file line number Diff line number Diff line change 1
1
snippet helloworld
2
2
options head
3
-
4
-
5
3
main(_) -> io:format("Hello, world!\n ").
6
4
7
5
snippet -module
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ abbr function () {}
15
15
snippet php
16
16
<?php
17
17
${1: TARGET }
18
- /* End of file ${2: filename } .php */
18
+ /* End of file ${2: filename } .php */
19
19
20
20
snippet pecho
21
21
<?php echo ${1} ?>${0}
Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ snippet code_block
61
61
abbr code
62
62
options head
63
63
.. code-block:: ${1: #:filetype }
64
-
65
- ${2: #:content }
64
+
65
+ ${2: #:content }
66
66
67
67
snippet link_raw
68
68
abbr link_as_raw
@@ -102,7 +102,6 @@ options head
102
102
103
103
snippet nested_list
104
104
options head
105
-
106
105
- ${1: #:text }
107
106
-
108
107
-
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ options head
16
16
snippet dump
17
17
abbr <pre> {{ dump(...) }} </pre>
18
18
options head
19
- <pre>
20
- {{ dump(${0: TARGET } ) }}
21
- </pre>
19
+ <pre>
20
+ {{ dump(${0: TARGET } ) }}
21
+ </pre>
22
22
23
23
snippet embed
24
24
abbr {% embed ... %} ... {% endembed %}
You can’t perform that action at this time.
0 commit comments