-
Notifications
You must be signed in to change notification settings - Fork 12
/
html.json
49 lines (46 loc) · 3.63 KB
/
html.json
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
{
"commands": [
{ "command": "Do undo", "action": "undo" },
{ "command": "Do copy", "action": "copy" },
{ "command": "Do cut", "action": "cut" },
{ "command": "Do delete", "action": "delete" },
{ "command": "Do paste", "action": "paste" },
{ "command": "Do find", "action": "vsc-command:actions.find" },
{ "command": "Put nothing", "snippet": "" },
{ "command": "Put zero", "snippet": "0" },
{ "command": "Put tabulator", "snippet": "\t" },
{ "command": "Put quotes", "snippet": "\"\"" },
{ "command": "Put space", "snippet": " " },
{ "command": "Put equal", "snippet": "=" },
{ "command": "Put new line", "snippet": "\n" },
{ "command": "Put span", "snippet": "<span>$1</span>", "ext": [".html"] },
{ "command": "Put heading one", "snippet": "<h1>$1</h1>", "ext": [".html"] },
{ "command": "Put heading two", "snippet": "<h2>$1</h2>", "ext": [".html"] },
{ "command": "Put heading three", "snippet": "<h3>$1</h3>", "ext": [".html"] },
{ "command": "Put heading four", "snippet": "<h4>$1</h4>", "ext": [".html"] },
{ "command": "Put heading five", "snippet": "<h5>$1</h5>", "ext": [".html"] },
{ "command": "Put heading six", "snippet": "<h6>$1</h6>", "ext": [".html"] },
{ "command": "Put paragraph", "snippet": "<p>$1</p>", "ext": [".html"] },
{ "command": "Put anchor", "snippet": "<a href=\"$1\">$2</a>", "ext": [".html"] },
{ "command": "Create root", "snippet": "<!DOCTYPE html>\n<html>\n$1\n</html>", "ext": [".html"] },
{ "command": "Create head", "snippet": "<head>\n\t$1\n</head>\n", "ext": [".html"] },
{ "command": "Create meta description", "snippet": "<meta name=\"description\" content=\"$1\">\n", "ext": [".html"] },
{ "command": "Create meta encoding", "snippet": "<meta charset=\"UTF-8\">\n", "ext": [".html"] },
{ "command": "Create link styles", "snippet": "<link rel=\"stylesheet\" href=\"$1\">\n", "ext": [".html"] },
{ "command": "Create style", "snippet": "<style>\n\t$1\n</style>\n", "ext": [".html"] },
{ "command": "Create title", "snippet": "<title>$1</title>\n", "ext": [".html"] },
{ "command": "Create body", "snippet": "<body>\n\t$1\n</body>\n", "ext": [".html"] },
{ "command": "Create section", "snippet": "<section>\n\t$1\n</section>\n", "ext": [".html"] },
{ "command": "Create aside", "snippet": "<aside>\n\t$1\n</aside>\n", "ext": [".html"] },
{ "command": "Create header", "snippet": "<header>\n\t$1\n</header>\n", "ext": [".html"] },
{ "command": "Create article", "snippet": "<article>\n\t$1\n</article>\n", "ext": [".html"] },
{ "command": "Create layer", "snippet": "<div>\n\t$1\n</div>", "ext": [".html"] },
{ "command": "Create list", "snippet": "<ul>\n\t$1\n</ul>\n", "ext": [".html"] },
{ "command": "Create ordered list", "snippet": "<ol>\n\t$1\n</ol>\n", "ext": [".html"] },
{ "command": "Create list item", "snippet": "<li>\n\t$1\n</li>\n", "ext": [".html"] },
{ "command": "Create naviagtion", "snippet": "<nav>\n$1\n</nav>\n", "ext": [".html"] },
{ "command": "Create script", "snippet": "<script>\n\t$1\n</script>\n", "ext": [".html"] },
{ "command": "Attribute class", "snippet": " class=\"$1\"", "ext": [".html"] },
{ "command": "Attribute id", "snippet": " id=\"$1\"", "ext": [".html"] }
]
}