-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnippets.json
More file actions
29 lines (29 loc) · 756 Bytes
/
snippets.json
File metadata and controls
29 lines (29 loc) · 756 Bytes
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
{
"meta:viewport": {
"prefix": ["meta:viewport", "viewport"],
"body": [
"meta(name=\"viewport\" content=\"width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0\")"
],
"description": "less tag"
},
"link:css": {
"prefix": ["link:css"],
"body": ["link(rel=\"stylesheet\" href=\"$0\")"]
},
"link:favicon": {
"prefix": ["link:favicon"],
"body": [
"link(rel=\"shortcut icon\" href=\"favicon.ico\" type=\"image/x-icon\")"
]
},
"less": {
"prefix": ["less", "style"],
"body": ["style(lang=\"less\").", " $0"],
"description": "less tag"
},
"js": {
"prefix": ["js", "script"],
"body": ["script.", " $0"],
"description": "js tag"
}
}