Skip to content

Commit 2c1f1a5

Browse files
authored
implementing lazy snippet additions
1 parent d957ef5 commit 2c1f1a5

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

snippets/lazy.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"Type Struture":{
3+
"prefix":"struct",
4+
"body":[
5+
"struct $1 {",
6+
"$2: $3,",
7+
"}"
8+
],
9+
"description":"Structure definition Snippet"
10+
},
11+
"If Statement":{
12+
"prefix":"if",
13+
"body":[
14+
"if $1 {",
15+
"}"
16+
],
17+
"description":"If Statement Snippet"
18+
},
19+
"For Statement":{
20+
"prefix":"for",
21+
"body":[
22+
"for $2 {",
23+
"}"
24+
],
25+
"description":"For Statement Snippet"
26+
}
27+
28+
}

0 commit comments

Comments
 (0)