@enjoys/context-engine 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. package/data/commands/adb.json +322 -0
  2. package/data/commands/alembic.json +301 -0
  3. package/data/commands/artisan.json +277 -0
  4. package/data/commands/atlas.json +426 -0
  5. package/data/commands/auth0.json +648 -0
  6. package/data/commands/bat.json +84 -0
  7. package/data/commands/btop.json +59 -0
  8. package/data/commands/bundle.json +321 -0
  9. package/data/commands/composer.json +507 -0
  10. package/data/commands/dart.json +216 -0
  11. package/data/commands/dbmate.json +257 -0
  12. package/data/commands/docker-compose.json +384 -0
  13. package/data/commands/drizzle-kit.json +217 -0
  14. package/data/commands/expo.json +65 -0
  15. package/data/commands/fastlane.json +243 -0
  16. package/data/commands/fd.json +86 -0
  17. package/data/commands/flutter.json +298 -0
  18. package/data/commands/flyway.json +261 -0
  19. package/data/commands/fzf.json +103 -0
  20. package/data/commands/gem.json +267 -0
  21. package/data/commands/htop.json +56 -0
  22. package/data/commands/jq.json +100 -0
  23. package/data/commands/k9s.json +62 -0
  24. package/data/commands/linux.json +3007 -0
  25. package/data/commands/liquibase.json +399 -0
  26. package/data/commands/manifest.json +619 -0
  27. package/data/commands/minikube.json +60 -0
  28. package/data/commands/ng.json +64 -0
  29. package/data/commands/nuxt.json +60 -0
  30. package/data/commands/nvim.json +91 -0
  31. package/data/commands/php.json +157 -0
  32. package/data/commands/pm2.json +259 -0
  33. package/data/commands/pod.json +175 -0
  34. package/data/commands/prisma.json +257 -0
  35. package/data/commands/rails.json +372 -0
  36. package/data/commands/rake.json +360 -0
  37. package/data/commands/react-native.json +57 -0
  38. package/data/commands/rg.json +103 -0
  39. package/data/commands/rspec.json +257 -0
  40. package/data/commands/ruby.json +108 -0
  41. package/data/commands/screen.json +101 -0
  42. package/data/commands/sequelize.json +342 -0
  43. package/data/commands/snyk.json +442 -0
  44. package/data/commands/sonar-scanner.json +219 -0
  45. package/data/commands/stripe.json +314 -0
  46. package/data/commands/symfony.json +449 -0
  47. package/data/commands/tmux.json +197 -0
  48. package/data/commands/top.json +61 -0
  49. package/data/commands/trivy.json +367 -0
  50. package/data/commands/twilio.json +382 -0
  51. package/data/commands/typeorm.json +262 -0
  52. package/data/commands/vim.json +85 -0
  53. package/data/commands/vue.json +60 -0
  54. package/data/commands/wp.json +857 -0
  55. package/data/commands/xcodebuild.json +141 -0
  56. package/data/commands/yq.json +57 -0
  57. package/data/completion/bash.json +1184 -0
  58. package/data/completion/c.json +1067 -0
  59. package/data/completion/cpp.json +824 -0
  60. package/data/completion/csharp.json +860 -0
  61. package/data/completion/dockerfile.json +536 -0
  62. package/data/completion/go.json +1346 -0
  63. package/data/completion/html.json +806 -0
  64. package/data/completion/java.json +1112 -0
  65. package/data/completion/javascript.json +914 -0
  66. package/data/completion/lua.json +968 -0
  67. package/data/completion/php.json +1535 -0
  68. package/data/completion/python.json +1427 -0
  69. package/data/completion/ruby.json +1531 -0
  70. package/data/completion/rust.json +698 -0
  71. package/data/completion/sql.json +887 -0
  72. package/data/completion/toml.json +428 -0
  73. package/data/completion/typescript.json +338 -0
  74. package/data/completion/yaml.json +563 -0
  75. package/data/defination/bash.json +565 -0
  76. package/data/defination/c.json +865 -0
  77. package/data/defination/cpp.json +348 -0
  78. package/data/defination/csharp.json +144 -0
  79. package/data/defination/dockerfile.json +113 -0
  80. package/data/defination/go.json +561 -0
  81. package/data/defination/html.json +559 -0
  82. package/data/defination/java.json +184 -0
  83. package/data/defination/javascript.json +265 -0
  84. package/data/defination/lua.json +181 -0
  85. package/data/defination/php.json +726 -0
  86. package/data/defination/python.json +717 -0
  87. package/data/defination/ruby.json +670 -0
  88. package/data/defination/rust.json +207 -0
  89. package/data/defination/sql.json +473 -0
  90. package/data/defination/toml.json +251 -0
  91. package/data/defination/typescript.json +29 -0
  92. package/data/defination/yaml.json +197 -0
  93. package/data/hover/bash.json +245 -0
  94. package/data/hover/c.json +265 -0
  95. package/data/hover/cpp.json +210 -0
  96. package/data/hover/csharp.json +290 -0
  97. package/data/hover/dockerfile.json +145 -0
  98. package/data/hover/go.json +580 -0
  99. package/data/hover/html.json +250 -0
  100. package/data/hover/java.json +395 -0
  101. package/data/hover/javascript.json +330 -0
  102. package/data/hover/lua.json +265 -0
  103. package/data/hover/php.json +300 -0
  104. package/data/hover/python.json +380 -0
  105. package/data/hover/ruby.json +265 -0
  106. package/data/hover/rust.json +275 -0
  107. package/data/hover/sql.json +230 -0
  108. package/data/hover/toml.json +145 -0
  109. package/data/hover/typescript.json +120 -0
  110. package/data/hover/yaml.json +165 -0
  111. package/data/manifest.json +242 -0
  112. package/package.json +1 -1
@@ -0,0 +1,806 @@
1
+ {
2
+ "language": "html",
3
+ "completions": [
4
+ {
5
+ "label": "html5",
6
+ "kind": 15,
7
+ "detail": "HTML5 boilerplate",
8
+ "documentation": { "value": "Standard HTML5 document structure.\n\n```html\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <title>Title</title>\n</head>\n<body></body>\n</html>\n```" },
9
+ "insertText": "<!DOCTYPE html>\n<html lang=\"${1:en}\">\n<head>\n <meta charset=\"UTF-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <title>${2:Document}</title>\n</head>\n<body>\n ${3}\n</body>\n</html>",
10
+ "insertTextRules": 4,
11
+ "sortText": "00_html5"
12
+ },
13
+ {
14
+ "label": "div",
15
+ "kind": 15,
16
+ "detail": "Division element",
17
+ "documentation": { "value": "Generic container for flow content.\n\n```html\n<div class=\"container\">\n ...\n</div>\n```" },
18
+ "insertText": "<div${1: class=\"${2:container}\"}>\n ${3}\n</div>",
19
+ "insertTextRules": 4,
20
+ "sortText": "01_div"
21
+ },
22
+ {
23
+ "label": "span",
24
+ "kind": 15,
25
+ "detail": "Inline container",
26
+ "documentation": { "value": "Generic inline container for phrasing content.\n\n```html\n<span class=\"highlight\">text</span>\n```" },
27
+ "insertText": "<span${1: class=\"${2}\"}>${3}</span>",
28
+ "insertTextRules": 4,
29
+ "sortText": "01_span"
30
+ },
31
+ {
32
+ "label": "p",
33
+ "kind": 15,
34
+ "detail": "Paragraph",
35
+ "documentation": { "value": "Represents a paragraph of text.\n\n```html\n<p>Your text here.</p>\n```" },
36
+ "insertText": "<p>${1}</p>",
37
+ "insertTextRules": 4,
38
+ "sortText": "01_p"
39
+ },
40
+ {
41
+ "label": "a",
42
+ "kind": 15,
43
+ "detail": "Anchor / Hyperlink",
44
+ "documentation": { "value": "Creates a hyperlink to web pages, files, email addresses, or locations.\n\n```html\n<a href=\"https://example.com\" target=\"_blank\">Link</a>\n```" },
45
+ "insertText": "<a href=\"${1:#}\"${2: target=\"${3|_blank,_self,_parent,_top|}\"}>${4:Link text}</a>",
46
+ "insertTextRules": 4,
47
+ "sortText": "01_a"
48
+ },
49
+ {
50
+ "label": "img",
51
+ "kind": 15,
52
+ "detail": "Image element",
53
+ "documentation": { "value": "Embeds an image into the document.\n\n```html\n<img src=\"image.png\" alt=\"description\" />\n```" },
54
+ "insertText": "<img src=\"${1}\" alt=\"${2:description}\"${3: width=\"${4}\" height=\"${5}\"} />",
55
+ "insertTextRules": 4,
56
+ "sortText": "01_img"
57
+ },
58
+ {
59
+ "label": "ul",
60
+ "kind": 15,
61
+ "detail": "Unordered list",
62
+ "documentation": { "value": "Represents an unordered list of items.\n\n```html\n<ul>\n <li>Item</li>\n</ul>\n```" },
63
+ "insertText": "<ul>\n <li>${1}</li>\n <li>${2}</li>\n <li>${3}</li>\n</ul>",
64
+ "insertTextRules": 4,
65
+ "sortText": "01_ul"
66
+ },
67
+ {
68
+ "label": "ol",
69
+ "kind": 15,
70
+ "detail": "Ordered list",
71
+ "documentation": { "value": "Represents an ordered list of items.\n\n```html\n<ol>\n <li>First</li>\n <li>Second</li>\n</ol>\n```" },
72
+ "insertText": "<ol>\n <li>${1}</li>\n <li>${2}</li>\n <li>${3}</li>\n</ol>",
73
+ "insertTextRules": 4,
74
+ "sortText": "01_ol"
75
+ },
76
+ {
77
+ "label": "li",
78
+ "kind": 15,
79
+ "detail": "List item",
80
+ "documentation": { "value": "Represents an item in a list (ol, ul, or menu).\n\n```html\n<li>Item content</li>\n```" },
81
+ "insertText": "<li>${1}</li>",
82
+ "insertTextRules": 4,
83
+ "sortText": "01_li"
84
+ },
85
+ {
86
+ "label": "table",
87
+ "kind": 15,
88
+ "detail": "Table element",
89
+ "documentation": { "value": "Represents tabular data.\n\n```html\n<table>\n <thead><tr><th>Header</th></tr></thead>\n <tbody><tr><td>Data</td></tr></tbody>\n</table>\n```" },
90
+ "insertText": "<table>\n <thead>\n <tr>\n <th>${1:Header}</th>\n <th>${2:Header}</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>${3}</td>\n <td>${4}</td>\n </tr>\n </tbody>\n</table>",
91
+ "insertTextRules": 4,
92
+ "sortText": "01_table"
93
+ },
94
+ {
95
+ "label": "tr",
96
+ "kind": 15,
97
+ "detail": "Table row",
98
+ "documentation": { "value": "Defines a row of cells in a table.\n\n```html\n<tr>\n <td>Cell</td>\n</tr>\n```" },
99
+ "insertText": "<tr>\n <td>${1}</td>\n <td>${2}</td>\n</tr>",
100
+ "insertTextRules": 4,
101
+ "sortText": "01_tr"
102
+ },
103
+ {
104
+ "label": "td",
105
+ "kind": 15,
106
+ "detail": "Table data cell",
107
+ "documentation": { "value": "Defines a cell of a table that contains data.\n\n```html\n<td>Cell content</td>\n```" },
108
+ "insertText": "<td>${1}</td>",
109
+ "insertTextRules": 4,
110
+ "sortText": "01_td"
111
+ },
112
+ {
113
+ "label": "th",
114
+ "kind": 15,
115
+ "detail": "Table header cell",
116
+ "documentation": { "value": "Defines a cell as the header of a group of table cells.\n\n```html\n<th scope=\"col\">Header</th>\n```" },
117
+ "insertText": "<th${1: scope=\"${2|col,row,colgroup,rowgroup|}\"}>$3</th>",
118
+ "insertTextRules": 4,
119
+ "sortText": "01_th"
120
+ },
121
+ {
122
+ "label": "form",
123
+ "kind": 15,
124
+ "detail": "Form element",
125
+ "documentation": { "value": "Represents a document section containing interactive controls for submitting information.\n\n```html\n<form action=\"/submit\" method=\"post\">\n ...\n</form>\n```" },
126
+ "insertText": "<form action=\"${1:/submit}\" method=\"${2|post,get|}\">\n ${3}\n</form>",
127
+ "insertTextRules": 4,
128
+ "sortText": "01_form"
129
+ },
130
+ {
131
+ "label": "input",
132
+ "kind": 15,
133
+ "detail": "Input element",
134
+ "documentation": { "value": "Creates interactive controls for web-based forms.\n\n```html\n<input type=\"text\" name=\"field\" placeholder=\"Enter value\" />\n```" },
135
+ "insertText": "<input type=\"${1|text,password,email,number,tel,url,search,date,time,datetime-local,month,week,color,range,file,checkbox,radio,hidden,submit,reset,button|}\" name=\"${2}\"${3: placeholder=\"${4}\"}${5: id=\"${6}\"} />",
136
+ "insertTextRules": 4,
137
+ "sortText": "01_input"
138
+ },
139
+ {
140
+ "label": "button",
141
+ "kind": 15,
142
+ "detail": "Button element",
143
+ "documentation": { "value": "Represents a clickable button.\n\n```html\n<button type=\"submit\">Click me</button>\n```" },
144
+ "insertText": "<button type=\"${1|submit,button,reset|}\"${2: class=\"${3}\"}>${4:Click me}</button>",
145
+ "insertTextRules": 4,
146
+ "sortText": "01_button"
147
+ },
148
+ {
149
+ "label": "select",
150
+ "kind": 15,
151
+ "detail": "Select dropdown",
152
+ "documentation": { "value": "Represents a control that provides a menu of options.\n\n```html\n<select name=\"options\">\n <option value=\"1\">Option 1</option>\n</select>\n```" },
153
+ "insertText": "<select name=\"${1}\" id=\"${2}\">\n <option value=\"${3}\">${4:Option}</option>\n <option value=\"${5}\">${6:Option}</option>\n</select>",
154
+ "insertTextRules": 4,
155
+ "sortText": "01_select"
156
+ },
157
+ {
158
+ "label": "option",
159
+ "kind": 15,
160
+ "detail": "Option in a select",
161
+ "documentation": { "value": "Defines an item in a select, optgroup, or datalist element.\n\n```html\n<option value=\"val\">Label</option>\n```" },
162
+ "insertText": "<option value=\"${1}\">${2}</option>",
163
+ "insertTextRules": 4,
164
+ "sortText": "01_option"
165
+ },
166
+ {
167
+ "label": "textarea",
168
+ "kind": 15,
169
+ "detail": "Textarea element",
170
+ "documentation": { "value": "Represents a multi-line plain-text editing control.\n\n```html\n<textarea name=\"message\" rows=\"4\" cols=\"50\"></textarea>\n```" },
171
+ "insertText": "<textarea name=\"${1}\" id=\"${2}\" rows=\"${3:4}\" cols=\"${4:50}\"${5: placeholder=\"${6}\"}>${7}</textarea>",
172
+ "insertTextRules": 4,
173
+ "sortText": "01_textarea"
174
+ },
175
+ {
176
+ "label": "label",
177
+ "kind": 15,
178
+ "detail": "Label element",
179
+ "documentation": { "value": "Represents a caption for an item in a user interface.\n\n```html\n<label for=\"inputId\">Label text</label>\n```" },
180
+ "insertText": "<label for=\"${1}\">${2:Label text}</label>",
181
+ "insertTextRules": 4,
182
+ "sortText": "01_label"
183
+ },
184
+ {
185
+ "label": "h1",
186
+ "kind": 15,
187
+ "detail": "Heading level 1",
188
+ "documentation": { "value": "Top-level heading. Use only once per page.\n\n```html\n<h1>Main Title</h1>\n```" },
189
+ "insertText": "<h1>${1:Heading}</h1>",
190
+ "insertTextRules": 4,
191
+ "sortText": "01_h1"
192
+ },
193
+ {
194
+ "label": "h2",
195
+ "kind": 15,
196
+ "detail": "Heading level 2",
197
+ "documentation": { "value": "Second-level heading.\n\n```html\n<h2>Section Title</h2>\n```" },
198
+ "insertText": "<h2>${1:Heading}</h2>",
199
+ "insertTextRules": 4,
200
+ "sortText": "01_h2"
201
+ },
202
+ {
203
+ "label": "h3",
204
+ "kind": 15,
205
+ "detail": "Heading level 3",
206
+ "documentation": { "value": "Third-level heading.\n\n```html\n<h3>Sub-section Title</h3>\n```" },
207
+ "insertText": "<h3>${1:Heading}</h3>",
208
+ "insertTextRules": 4,
209
+ "sortText": "01_h3"
210
+ },
211
+ {
212
+ "label": "h4",
213
+ "kind": 15,
214
+ "detail": "Heading level 4",
215
+ "documentation": { "value": "Fourth-level heading.\n\n```html\n<h4>Heading</h4>\n```" },
216
+ "insertText": "<h4>${1:Heading}</h4>",
217
+ "insertTextRules": 4,
218
+ "sortText": "01_h4"
219
+ },
220
+ {
221
+ "label": "h5",
222
+ "kind": 15,
223
+ "detail": "Heading level 5",
224
+ "documentation": { "value": "Fifth-level heading.\n\n```html\n<h5>Heading</h5>\n```" },
225
+ "insertText": "<h5>${1:Heading}</h5>",
226
+ "insertTextRules": 4,
227
+ "sortText": "01_h5"
228
+ },
229
+ {
230
+ "label": "h6",
231
+ "kind": 15,
232
+ "detail": "Heading level 6",
233
+ "documentation": { "value": "Sixth-level heading (lowest).\n\n```html\n<h6>Heading</h6>\n```" },
234
+ "insertText": "<h6>${1:Heading}</h6>",
235
+ "insertTextRules": 4,
236
+ "sortText": "01_h6"
237
+ },
238
+ {
239
+ "label": "header",
240
+ "kind": 15,
241
+ "detail": "Header section",
242
+ "documentation": { "value": "Represents introductory content or a set of navigational links.\n\n```html\n<header>\n <h1>Site Title</h1>\n <nav>...</nav>\n</header>\n```" },
243
+ "insertText": "<header>\n ${1}\n</header>",
244
+ "insertTextRules": 4,
245
+ "sortText": "01_header"
246
+ },
247
+ {
248
+ "label": "footer",
249
+ "kind": 15,
250
+ "detail": "Footer section",
251
+ "documentation": { "value": "Represents a footer for its nearest sectioning content or sectioning root.\n\n```html\n<footer>\n <p>&copy; 2025 Company</p>\n</footer>\n```" },
252
+ "insertText": "<footer>\n ${1}\n</footer>",
253
+ "insertTextRules": 4,
254
+ "sortText": "01_footer"
255
+ },
256
+ {
257
+ "label": "nav",
258
+ "kind": 15,
259
+ "detail": "Navigation section",
260
+ "documentation": { "value": "Represents a section of a page whose purpose is to provide navigation links.\n\n```html\n<nav>\n <a href=\"/\">Home</a>\n <a href=\"/about\">About</a>\n</nav>\n```" },
261
+ "insertText": "<nav>\n <ul>\n <li><a href=\"${1:#}\">${2:Home}</a></li>\n <li><a href=\"${3:#}\">${4:About}</a></li>\n </ul>\n</nav>",
262
+ "insertTextRules": 4,
263
+ "sortText": "01_nav"
264
+ },
265
+ {
266
+ "label": "main",
267
+ "kind": 15,
268
+ "detail": "Main content",
269
+ "documentation": { "value": "Represents the dominant content of the body. Only one per document.\n\n```html\n<main>\n <h1>Page Title</h1>\n ...\n</main>\n```" },
270
+ "insertText": "<main>\n ${1}\n</main>",
271
+ "insertTextRules": 4,
272
+ "sortText": "01_main"
273
+ },
274
+ {
275
+ "label": "section",
276
+ "kind": 15,
277
+ "detail": "Generic section",
278
+ "documentation": { "value": "Represents a standalone section of content.\n\n```html\n<section>\n <h2>Section Title</h2>\n ...\n</section>\n```" },
279
+ "insertText": "<section${1: id=\"${2}\"}>\n <h2>${3:Section Title}</h2>\n ${4}\n</section>",
280
+ "insertTextRules": 4,
281
+ "sortText": "01_section"
282
+ },
283
+ {
284
+ "label": "article",
285
+ "kind": 15,
286
+ "detail": "Article element",
287
+ "documentation": { "value": "Represents a self-contained composition intended for distribution or reuse.\n\n```html\n<article>\n <h2>Article Title</h2>\n <p>Content...</p>\n</article>\n```" },
288
+ "insertText": "<article>\n <h2>${1:Title}</h2>\n <p>${2}</p>\n</article>",
289
+ "insertTextRules": 4,
290
+ "sortText": "01_article"
291
+ },
292
+ {
293
+ "label": "aside",
294
+ "kind": 15,
295
+ "detail": "Aside content",
296
+ "documentation": { "value": "Represents content indirectly related to the main content (sidebars, call-out boxes).\n\n```html\n<aside>\n <p>Related info</p>\n</aside>\n```" },
297
+ "insertText": "<aside>\n ${1}\n</aside>",
298
+ "insertTextRules": 4,
299
+ "sortText": "01_aside"
300
+ },
301
+ {
302
+ "label": "figure",
303
+ "kind": 15,
304
+ "detail": "Figure with caption",
305
+ "documentation": { "value": "Represents self-contained content, optionally with a caption.\n\n```html\n<figure>\n <img src=\"photo.jpg\" alt=\"desc\" />\n <figcaption>Caption</figcaption>\n</figure>\n```" },
306
+ "insertText": "<figure>\n ${1:<img src=\"${2}\" alt=\"${3}\" />}\n <figcaption>${4:Caption}</figcaption>\n</figure>",
307
+ "insertTextRules": 4,
308
+ "sortText": "01_figure"
309
+ },
310
+ {
311
+ "label": "figcaption",
312
+ "kind": 15,
313
+ "detail": "Figure caption",
314
+ "documentation": { "value": "Represents a caption or legend for a figure element.\n\n```html\n<figcaption>Image description</figcaption>\n```" },
315
+ "insertText": "<figcaption>${1}</figcaption>",
316
+ "insertTextRules": 4,
317
+ "sortText": "01_figcaption"
318
+ },
319
+ {
320
+ "label": "details",
321
+ "kind": 15,
322
+ "detail": "Disclosure widget",
323
+ "documentation": { "value": "Creates a disclosure widget where additional info is visible when toggled open.\n\n```html\n<details>\n <summary>Click to expand</summary>\n <p>Hidden content</p>\n</details>\n```" },
324
+ "insertText": "<details${1: open}>\n <summary>${2:Click to expand}</summary>\n ${3:<p>Content</p>}\n</details>",
325
+ "insertTextRules": 4,
326
+ "sortText": "01_details"
327
+ },
328
+ {
329
+ "label": "summary",
330
+ "kind": 15,
331
+ "detail": "Disclosure summary",
332
+ "documentation": { "value": "Specifies a summary or caption for a details element.\n\n```html\n<summary>Title</summary>\n```" },
333
+ "insertText": "<summary>${1}</summary>",
334
+ "insertTextRules": 4,
335
+ "sortText": "01_summary"
336
+ },
337
+ {
338
+ "label": "dialog",
339
+ "kind": 15,
340
+ "detail": "Dialog box",
341
+ "documentation": { "value": "Represents a dialog box or other interactive component.\n\n```html\n<dialog id=\"myDialog\">\n <p>Dialog content</p>\n <button>Close</button>\n</dialog>\n```" },
342
+ "insertText": "<dialog id=\"${1:myDialog}\">\n <h2>${2:Dialog Title}</h2>\n <p>${3}</p>\n <button onclick=\"this.closest('dialog').close()\">${4:Close}</button>\n</dialog>",
343
+ "insertTextRules": 4,
344
+ "sortText": "01_dialog"
345
+ },
346
+ {
347
+ "label": "template",
348
+ "kind": 15,
349
+ "detail": "Content template",
350
+ "documentation": { "value": "Holds HTML that is not rendered immediately but can be instantiated via JavaScript.\n\n```html\n<template id=\"tmpl\">\n <div class=\"card\">...</div>\n</template>\n```" },
351
+ "insertText": "<template id=\"${1:tmpl}\">\n ${2}\n</template>",
352
+ "insertTextRules": 4,
353
+ "sortText": "01_template"
354
+ },
355
+ {
356
+ "label": "slot",
357
+ "kind": 15,
358
+ "detail": "Web Component slot",
359
+ "documentation": { "value": "A placeholder inside a web component that users can fill with their own markup.\n\n```html\n<slot name=\"header\"></slot>\n```" },
360
+ "insertText": "<slot name=\"${1:default}\">${2}</slot>",
361
+ "insertTextRules": 4,
362
+ "sortText": "01_slot"
363
+ },
364
+ {
365
+ "label": "video",
366
+ "kind": 15,
367
+ "detail": "Video element",
368
+ "documentation": { "value": "Embeds a media player for video playback.\n\n```html\n<video src=\"movie.mp4\" controls width=\"640\"></video>\n```" },
369
+ "insertText": "<video${1: src=\"${2}\"} controls${3: width=\"${4:640}\"${5: height=\"${6:360}\"}${7: poster=\"${8}\"}}\n ${9:<source src=\"${10}\" type=\"video/${11|mp4,webm,ogg|}\" />}\n Your browser does not support the video tag.\n</video>",
370
+ "insertTextRules": 4,
371
+ "sortText": "01_video"
372
+ },
373
+ {
374
+ "label": "audio",
375
+ "kind": 15,
376
+ "detail": "Audio element",
377
+ "documentation": { "value": "Embeds sound content in documents.\n\n```html\n<audio src=\"sound.mp3\" controls></audio>\n```" },
378
+ "insertText": "<audio controls>\n <source src=\"${1}\" type=\"audio/${2|mpeg,ogg,wav|}\" />\n Your browser does not support the audio tag.\n</audio>",
379
+ "insertTextRules": 4,
380
+ "sortText": "01_audio"
381
+ },
382
+ {
383
+ "label": "source",
384
+ "kind": 15,
385
+ "detail": "Media source",
386
+ "documentation": { "value": "Specifies multiple media resources for picture, audio, or video elements.\n\n```html\n<source src=\"file.mp4\" type=\"video/mp4\" />\n```" },
387
+ "insertText": "<source src=\"${1}\" type=\"${2}\" />",
388
+ "insertTextRules": 4,
389
+ "sortText": "01_source"
390
+ },
391
+ {
392
+ "label": "canvas",
393
+ "kind": 15,
394
+ "detail": "Canvas element",
395
+ "documentation": { "value": "Container used to draw graphics via JavaScript (Canvas API or WebGL).\n\n```html\n<canvas id=\"myCanvas\" width=\"400\" height=\"300\"></canvas>\n```" },
396
+ "insertText": "<canvas id=\"${1:myCanvas}\" width=\"${2:400}\" height=\"${3:300}\"></canvas>",
397
+ "insertTextRules": 4,
398
+ "sortText": "01_canvas"
399
+ },
400
+ {
401
+ "label": "svg",
402
+ "kind": 15,
403
+ "detail": "SVG container",
404
+ "documentation": { "value": "Container for SVG graphics.\n\n```html\n<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\">\n ...\n</svg>\n```" },
405
+ "insertText": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 ${1:100} ${2:100}\" width=\"${3:100}\" height=\"${4:100}\">\n ${5}\n</svg>",
406
+ "insertTextRules": 4,
407
+ "sortText": "01_svg"
408
+ },
409
+ {
410
+ "label": "iframe",
411
+ "kind": 15,
412
+ "detail": "Inline frame",
413
+ "documentation": { "value": "Embeds another HTML page into the current one.\n\n```html\n<iframe src=\"https://example.com\" width=\"600\" height=\"400\"></iframe>\n```" },
414
+ "insertText": "<iframe src=\"${1}\" width=\"${2:600}\" height=\"${3:400}\"${4: title=\"${5}\"}${6: frameborder=\"0\" allowfullscreen}></iframe>",
415
+ "insertTextRules": 4,
416
+ "sortText": "01_iframe"
417
+ },
418
+ {
419
+ "label": "link",
420
+ "kind": 15,
421
+ "detail": "Link (external resource)",
422
+ "documentation": { "value": "Specifies relationships between the current document and an external resource (stylesheets, icons).\n\n```html\n<link rel=\"stylesheet\" href=\"styles.css\" />\n```" },
423
+ "insertText": "<link rel=\"${1|stylesheet,icon,preconnect,preload,prefetch,canonical,manifest|}\" href=\"${2}\"${3: type=\"${4}\"} />",
424
+ "insertTextRules": 4,
425
+ "sortText": "01_link"
426
+ },
427
+ {
428
+ "label": "meta",
429
+ "kind": 15,
430
+ "detail": "Meta element",
431
+ "documentation": { "value": "Represents metadata about the HTML document.\n\n```html\n<meta name=\"description\" content=\"Page description\" />\n```" },
432
+ "insertText": "<meta ${1|name,property,http-equiv,charset|}=\"${2}\" ${3:content=\"${4}\"} />",
433
+ "insertTextRules": 4,
434
+ "sortText": "01_meta"
435
+ },
436
+ {
437
+ "label": "script",
438
+ "kind": 15,
439
+ "detail": "Script element",
440
+ "documentation": { "value": "Embeds executable code or references an external script.\n\n```html\n<script src=\"app.js\"></script>\n<script>console.log('inline');</script>\n```" },
441
+ "insertText": "<script${1: src=\"${2}\"}${3: type=\"${4|module,text/javascript|}\"}${5: defer}>\n${6}\n</script>",
442
+ "insertTextRules": 4,
443
+ "sortText": "01_script"
444
+ },
445
+ {
446
+ "label": "style",
447
+ "kind": 15,
448
+ "detail": "Style element",
449
+ "documentation": { "value": "Contains CSS style information for the document.\n\n```html\n<style>\n body { margin: 0; }\n</style>\n```" },
450
+ "insertText": "<style>\n ${1}\n</style>",
451
+ "insertTextRules": 4,
452
+ "sortText": "01_style"
453
+ },
454
+ {
455
+ "label": "noscript",
456
+ "kind": 15,
457
+ "detail": "Noscript fallback",
458
+ "documentation": { "value": "Defines content to display if the browser has scripting disabled.\n\n```html\n<noscript>Please enable JavaScript.</noscript>\n```" },
459
+ "insertText": "<noscript>\n ${1:Please enable JavaScript to use this application.}\n</noscript>",
460
+ "insertTextRules": 4,
461
+ "sortText": "01_noscript"
462
+ },
463
+ {
464
+ "label": "picture",
465
+ "kind": 15,
466
+ "detail": "Picture element",
467
+ "documentation": { "value": "Contains multiple source elements and one img element for responsive images.\n\n```html\n<picture>\n <source srcset=\"img.webp\" type=\"image/webp\" />\n <img src=\"img.jpg\" alt=\"desc\" />\n</picture>\n```" },
468
+ "insertText": "<picture>\n <source srcset=\"${1}\" type=\"image/${2|webp,avif,png|}\" />\n <img src=\"${3}\" alt=\"${4}\" />\n</picture>",
469
+ "insertTextRules": 4,
470
+ "sortText": "01_picture"
471
+ },
472
+ {
473
+ "label": "time",
474
+ "kind": 15,
475
+ "detail": "Time element",
476
+ "documentation": { "value": "Represents a specific period in time or a machine-readable datetime.\n\n```html\n<time datetime=\"2025-01-01\">January 1, 2025</time>\n```" },
477
+ "insertText": "<time datetime=\"${1}\">${2}</time>",
478
+ "insertTextRules": 4,
479
+ "sortText": "01_time"
480
+ },
481
+ {
482
+ "label": "mark",
483
+ "kind": 15,
484
+ "detail": "Highlight text",
485
+ "documentation": { "value": "Represents text that is highlighted for reference or notation.\n\n```html\n<mark>highlighted text</mark>\n```" },
486
+ "insertText": "<mark>${1}</mark>",
487
+ "insertTextRules": 4,
488
+ "sortText": "01_mark"
489
+ },
490
+ {
491
+ "label": "progress",
492
+ "kind": 15,
493
+ "detail": "Progress bar",
494
+ "documentation": { "value": "Displays an indicator showing the progress of a task.\n\n```html\n<progress value=\"70\" max=\"100\">70%</progress>\n```" },
495
+ "insertText": "<progress value=\"${1:0}\" max=\"${2:100}\">${3}</progress>",
496
+ "insertTextRules": 4,
497
+ "sortText": "01_progress"
498
+ },
499
+ {
500
+ "label": "meter",
501
+ "kind": 15,
502
+ "detail": "Meter / gauge",
503
+ "documentation": { "value": "Represents a scalar measurement within a known range.\n\n```html\n<meter value=\"0.6\" min=\"0\" max=\"1\">60%</meter>\n```" },
504
+ "insertText": "<meter value=\"${1}\" min=\"${2:0}\" max=\"${3:1}\"${4: low=\"${5}\" high=\"${6}\" optimum=\"${7}\"}>${8}</meter>",
505
+ "insertTextRules": 4,
506
+ "sortText": "01_meter"
507
+ },
508
+ {
509
+ "label": "output",
510
+ "kind": 15,
511
+ "detail": "Output element",
512
+ "documentation": { "value": "Represents the result of a calculation or user action.\n\n```html\n<output name=\"result\" for=\"a b\">0</output>\n```" },
513
+ "insertText": "<output name=\"${1:result}\" for=\"${2}\">${3}</output>",
514
+ "insertTextRules": 4,
515
+ "sortText": "01_output"
516
+ },
517
+ {
518
+ "label": "datalist",
519
+ "kind": 15,
520
+ "detail": "Datalist element",
521
+ "documentation": { "value": "Contains a set of option elements representing predefined options for an input.\n\n```html\n<input list=\"browsers\" />\n<datalist id=\"browsers\">\n <option value=\"Chrome\" />\n <option value=\"Firefox\" />\n</datalist>\n```" },
522
+ "insertText": "<input list=\"${1:listId}\" />\n<datalist id=\"${1:listId}\">\n <option value=\"${2}\" />\n <option value=\"${3}\" />\n <option value=\"${4}\" />\n</datalist>",
523
+ "insertTextRules": 4,
524
+ "sortText": "01_datalist"
525
+ },
526
+ {
527
+ "label": "fieldset",
528
+ "kind": 15,
529
+ "detail": "Fieldset with legend",
530
+ "documentation": { "value": "Groups several controls and labels within a web form.\n\n```html\n<fieldset>\n <legend>Group Title</legend>\n ...\n</fieldset>\n```" },
531
+ "insertText": "<fieldset>\n <legend>${1:Group Title}</legend>\n ${2}\n</fieldset>",
532
+ "insertTextRules": 4,
533
+ "sortText": "01_fieldset"
534
+ },
535
+ {
536
+ "label": "legend",
537
+ "kind": 15,
538
+ "detail": "Legend for fieldset",
539
+ "documentation": { "value": "Represents a caption for the content of its parent fieldset.\n\n```html\n<legend>Title</legend>\n```" },
540
+ "insertText": "<legend>${1}</legend>",
541
+ "insertTextRules": 4,
542
+ "sortText": "01_legend"
543
+ },
544
+ {
545
+ "label": "abbr",
546
+ "kind": 15,
547
+ "detail": "Abbreviation",
548
+ "documentation": { "value": "Represents an abbreviation or acronym; optionally provide a full description via title.\n\n```html\n<abbr title=\"HyperText Markup Language\">HTML</abbr>\n```" },
549
+ "insertText": "<abbr title=\"${1:Full term}\">${2:ABBR}</abbr>",
550
+ "insertTextRules": 4,
551
+ "sortText": "01_abbr"
552
+ },
553
+ {
554
+ "label": "cite",
555
+ "kind": 15,
556
+ "detail": "Citation",
557
+ "documentation": { "value": "Represents a reference to a creative work.\n\n```html\n<cite>Book Title</cite>\n```" },
558
+ "insertText": "<cite>${1}</cite>",
559
+ "insertTextRules": 4,
560
+ "sortText": "01_cite"
561
+ },
562
+ {
563
+ "label": "code",
564
+ "kind": 15,
565
+ "detail": "Inline code",
566
+ "documentation": { "value": "Displays its contents styled to indicate it is a short fragment of computer code.\n\n```html\n<code>const x = 1;</code>\n```" },
567
+ "insertText": "<code>${1}</code>",
568
+ "insertTextRules": 4,
569
+ "sortText": "01_code"
570
+ },
571
+ {
572
+ "label": "pre",
573
+ "kind": 15,
574
+ "detail": "Preformatted text",
575
+ "documentation": { "value": "Represents preformatted text which is presented exactly as written.\n\n```html\n<pre><code>function hello() {}</code></pre>\n```" },
576
+ "insertText": "<pre><code>\n${1}\n</code></pre>",
577
+ "insertTextRules": 4,
578
+ "sortText": "01_pre"
579
+ },
580
+ {
581
+ "label": "blockquote",
582
+ "kind": 15,
583
+ "detail": "Block quotation",
584
+ "documentation": { "value": "Indicates that the enclosed text is an extended quotation.\n\n```html\n<blockquote cite=\"source\">\n <p>Quoted text.</p>\n</blockquote>\n```" },
585
+ "insertText": "<blockquote${1: cite=\"${2}\"}>\n <p>${3}</p>\n</blockquote>",
586
+ "insertTextRules": 4,
587
+ "sortText": "01_blockquote"
588
+ },
589
+ {
590
+ "label": "hr",
591
+ "kind": 15,
592
+ "detail": "Horizontal rule",
593
+ "documentation": { "value": "Represents a thematic break between paragraph-level elements.\n\n```html\n<hr />\n```" },
594
+ "insertText": "<hr />",
595
+ "insertTextRules": 4,
596
+ "sortText": "01_hr"
597
+ },
598
+ {
599
+ "label": "br",
600
+ "kind": 15,
601
+ "detail": "Line break",
602
+ "documentation": { "value": "Produces a line break in text.\n\n```html\n<br />\n```" },
603
+ "insertText": "<br />",
604
+ "insertTextRules": 4,
605
+ "sortText": "01_br"
606
+ },
607
+ {
608
+ "label": "wbr",
609
+ "kind": 15,
610
+ "detail": "Word break opportunity",
611
+ "documentation": { "value": "Represents a word break opportunity — a position where the browser may optionally break a line.\n\n```html\nSuper<wbr />califragilistic\n```" },
612
+ "insertText": "<wbr />",
613
+ "insertTextRules": 4,
614
+ "sortText": "01_wbr"
615
+ },
616
+ {
617
+ "label": "class",
618
+ "kind": 5,
619
+ "detail": "class attribute",
620
+ "documentation": { "value": "Specifies one or more CSS class names for an element.\n\n```html\n<div class=\"container flex\">\n```" },
621
+ "insertText": "class=\"${1}\"",
622
+ "insertTextRules": 4,
623
+ "sortText": "02_class"
624
+ },
625
+ {
626
+ "label": "id",
627
+ "kind": 5,
628
+ "detail": "id attribute",
629
+ "documentation": { "value": "Specifies a unique id for an HTML element.\n\n```html\n<div id=\"main-content\">\n```" },
630
+ "insertText": "id=\"${1}\"",
631
+ "insertTextRules": 4,
632
+ "sortText": "02_id"
633
+ },
634
+ {
635
+ "label": "style-attr",
636
+ "kind": 5,
637
+ "detail": "style attribute",
638
+ "documentation": { "value": "Specifies inline CSS styles for an element.\n\n```html\n<div style=\"color: red; font-size: 16px;\">\n```" },
639
+ "insertText": "style=\"${1}\"",
640
+ "insertTextRules": 4,
641
+ "sortText": "02_style"
642
+ },
643
+ {
644
+ "label": "data-*",
645
+ "kind": 5,
646
+ "detail": "data attribute",
647
+ "documentation": { "value": "Custom data attributes for storing extra information.\n\n```html\n<div data-id=\"123\" data-role=\"admin\">\n```" },
648
+ "insertText": "data-${1:name}=\"${2:value}\"",
649
+ "insertTextRules": 4,
650
+ "sortText": "02_data"
651
+ },
652
+ {
653
+ "label": "aria-*",
654
+ "kind": 5,
655
+ "detail": "ARIA attribute",
656
+ "documentation": { "value": "Accessible Rich Internet Applications attributes for accessibility.\n\n```html\n<button aria-label=\"Close\" aria-expanded=\"false\">\n```" },
657
+ "insertText": "aria-${1|label,hidden,expanded,controls,describedby,labelledby,live,role,pressed,checked,selected,disabled,current,haspopup,modal,required,invalid|}=\"${2}\"",
658
+ "insertTextRules": 4,
659
+ "sortText": "02_aria"
660
+ },
661
+ {
662
+ "label": "role",
663
+ "kind": 5,
664
+ "detail": "ARIA role attribute",
665
+ "documentation": { "value": "Defines the role of an element for assistive technologies.\n\n```html\n<div role=\"navigation\">\n```" },
666
+ "insertText": "role=\"${1|button,navigation,banner,main,contentinfo,complementary,search,form,dialog,alert,alertdialog,status,tablist,tab,tabpanel,menu,menuitem,toolbar,progressbar,tree,treeitem,listbox,option,grid,gridcell,presentation,none|}\"",
667
+ "insertTextRules": 4,
668
+ "sortText": "02_role"
669
+ },
670
+ {
671
+ "label": "href",
672
+ "kind": 5,
673
+ "detail": "href attribute",
674
+ "documentation": { "value": "The URL the hyperlink points to.\n\n```html\n<a href=\"https://example.com\">Link</a>\n```" },
675
+ "insertText": "href=\"${1}\"",
676
+ "insertTextRules": 4,
677
+ "sortText": "02_href"
678
+ },
679
+ {
680
+ "label": "src",
681
+ "kind": 5,
682
+ "detail": "src attribute",
683
+ "documentation": { "value": "The URL of the embeddable content.\n\n```html\n<img src=\"image.png\" />\n<script src=\"app.js\"></script>\n```" },
684
+ "insertText": "src=\"${1}\"",
685
+ "insertTextRules": 4,
686
+ "sortText": "02_src"
687
+ },
688
+ {
689
+ "label": "alt",
690
+ "kind": 5,
691
+ "detail": "alt attribute",
692
+ "documentation": { "value": "Alternative text description for images. Essential for accessibility.\n\n```html\n<img src=\"photo.jpg\" alt=\"A sunset over the ocean\" />\n```" },
693
+ "insertText": "alt=\"${1}\"",
694
+ "insertTextRules": 4,
695
+ "sortText": "02_alt"
696
+ },
697
+ {
698
+ "label": "title",
699
+ "kind": 5,
700
+ "detail": "title attribute",
701
+ "documentation": { "value": "Advisory information — typically shown as a tooltip.\n\n```html\n<abbr title=\"HyperText Markup Language\">HTML</abbr>\n```" },
702
+ "insertText": "title=\"${1}\"",
703
+ "insertTextRules": 4,
704
+ "sortText": "02_title"
705
+ },
706
+ {
707
+ "label": "placeholder",
708
+ "kind": 5,
709
+ "detail": "placeholder attribute",
710
+ "documentation": { "value": "Short hint displayed in the input before the user enters a value.\n\n```html\n<input type=\"text\" placeholder=\"Enter your name\" />\n```" },
711
+ "insertText": "placeholder=\"${1}\"",
712
+ "insertTextRules": 4,
713
+ "sortText": "02_placeholder"
714
+ },
715
+ {
716
+ "label": "required",
717
+ "kind": 14,
718
+ "detail": "required attribute",
719
+ "documentation": { "value": "Specifies that the input field must be filled out before submission.\n\n```html\n<input type=\"email\" required />\n```" },
720
+ "insertText": "required",
721
+ "insertTextRules": 0,
722
+ "sortText": "02_required"
723
+ },
724
+ {
725
+ "label": "disabled",
726
+ "kind": 14,
727
+ "detail": "disabled attribute",
728
+ "documentation": { "value": "Disables an input element so it cannot be interacted with.\n\n```html\n<button disabled>Submit</button>\n```" },
729
+ "insertText": "disabled",
730
+ "insertTextRules": 0,
731
+ "sortText": "02_disabled"
732
+ },
733
+ {
734
+ "label": "readonly",
735
+ "kind": 14,
736
+ "detail": "readonly attribute",
737
+ "documentation": { "value": "Specifies that an input field is read-only (cannot be modified).\n\n```html\n<input type=\"text\" value=\"fixed\" readonly />\n```" },
738
+ "insertText": "readonly",
739
+ "insertTextRules": 0,
740
+ "sortText": "02_readonly"
741
+ },
742
+ {
743
+ "label": "checked",
744
+ "kind": 14,
745
+ "detail": "checked attribute",
746
+ "documentation": { "value": "Specifies that a checkbox or radio input should be pre-selected.\n\n```html\n<input type=\"checkbox\" checked />\n```" },
747
+ "insertText": "checked",
748
+ "insertTextRules": 0,
749
+ "sortText": "02_checked"
750
+ },
751
+ {
752
+ "label": "selected",
753
+ "kind": 14,
754
+ "detail": "selected attribute",
755
+ "documentation": { "value": "Specifies that an option should be pre-selected in a dropdown.\n\n```html\n<option value=\"a\" selected>Option A</option>\n```" },
756
+ "insertText": "selected",
757
+ "insertTextRules": 0,
758
+ "sortText": "02_selected"
759
+ },
760
+ {
761
+ "label": "hidden",
762
+ "kind": 14,
763
+ "detail": "hidden attribute",
764
+ "documentation": { "value": "Indicates that the element is not yet, or is no longer, relevant.\n\n```html\n<div hidden>This is hidden</div>\n```" },
765
+ "insertText": "hidden",
766
+ "insertTextRules": 0,
767
+ "sortText": "02_hidden"
768
+ },
769
+ {
770
+ "label": "tabindex",
771
+ "kind": 5,
772
+ "detail": "tabindex attribute",
773
+ "documentation": { "value": "Specifies the tab order of an element. Use 0 to make focusable, -1 to remove from tab order.\n\n```html\n<div tabindex=\"0\">Focusable</div>\n```" },
774
+ "insertText": "tabindex=\"${1|0,-1|}\"",
775
+ "insertTextRules": 4,
776
+ "sortText": "02_tabindex"
777
+ },
778
+ {
779
+ "label": "contenteditable",
780
+ "kind": 5,
781
+ "detail": "contenteditable attribute",
782
+ "documentation": { "value": "Specifies whether the content of an element is editable.\n\n```html\n<div contenteditable=\"true\">Edit me</div>\n```" },
783
+ "insertText": "contenteditable=\"${1|true,false|}\"",
784
+ "insertTextRules": 4,
785
+ "sortText": "02_contenteditable"
786
+ },
787
+ {
788
+ "label": "draggable",
789
+ "kind": 5,
790
+ "detail": "draggable attribute",
791
+ "documentation": { "value": "Specifies whether an element is draggable.\n\n```html\n<div draggable=\"true\">Drag me</div>\n```" },
792
+ "insertText": "draggable=\"${1|true,false|}\"",
793
+ "insertTextRules": 4,
794
+ "sortText": "02_draggable"
795
+ },
796
+ {
797
+ "label": "loading",
798
+ "kind": 5,
799
+ "detail": "loading attribute (lazy)",
800
+ "documentation": { "value": "Indicates how the browser should load the element. Use 'lazy' for deferred loading.\n\n```html\n<img src=\"photo.jpg\" loading=\"lazy\" alt=\"desc\" />\n<iframe src=\"page.html\" loading=\"lazy\"></iframe>\n```" },
801
+ "insertText": "loading=\"${1|lazy,eager|}\"",
802
+ "insertTextRules": 4,
803
+ "sortText": "02_loading"
804
+ }
805
+ ]
806
+ }