You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Embeds an animation within a block of documentation, with options for specifying the size and source URL.",
242
206
"body": "/// {@animation name 100 200 ${0:https://host.tld/path/to/video.mp4}}"
243
207
},
244
208
"Dart doc new template": {
245
209
"scope": "flutter, dart",
246
210
"prefix": [
211
+
"newtmpl",
247
212
"@template",
248
213
"template",
249
-
"dartdoc-new-template",
214
+
"doc-new-template",
250
215
"doc-new-macro",
251
-
"newtmpl",
252
216
"@doc-template"
253
217
],
254
-
"description": "Creates a new dartdoc template with current file's name as its prefix",
218
+
"description": "Creates a new Dart documentation template with the current file's name as the prefix, useful for reusing content across multiple documentation blocks.",
255
219
"body": [
256
220
"/// {@template ${1:$TM_FILENAME_BASE}}",
257
221
"/// ${0:Body of the template}",
@@ -261,27 +225,25 @@
261
225
"Dart doc use macro": {
262
226
"scope": "flutter, dart",
263
227
"prefix": [
228
+
"usetmpl",
264
229
"@macro",
265
230
"macro",
266
-
"dartdoc-use-template",
231
+
"doc-use-template",
267
232
"doc-use-macro",
268
-
"usetmpl",
269
233
"@doc-macro"
270
234
],
271
-
"description": "Uses existing dartdoc macro with current file's name as its prefix",
235
+
"description": "Inserts an existing Dart documentation macro, using the current file's name as the prefix, to maintain consistency in documentation.",
272
236
"body": "/// {@macro ${0:$TM_FILENAME_BASE}}"
273
237
},
274
238
"Dart doc inject html": {
275
239
"scope": "flutter, dart",
276
240
"prefix": [
241
+
"doc-html",
277
242
"@inject-html",
278
243
"inject-html",
279
-
"dartdoc-html",
280
-
"doc-html",
281
-
"html",
282
244
"@doc-html"
283
245
],
284
-
"description": "Injects html into the current comment",
246
+
"description": "Injects custom HTML into a documentation comment, allowing for rich formatting or content inclusion.",
285
247
"body": [
286
248
"/// {@inject-html}",
287
249
"/// ${0:<p>[The HTML to inject.]()</p>}",
@@ -291,29 +253,29 @@
291
253
"Deprecated": {
292
254
"scope": "flutter, dart",
293
255
"prefix": [
294
-
"@deprecated",
295
-
"deprecated"
256
+
"deprecated",
257
+
"@deprecated"
296
258
],
297
-
"description": "Deprecated",
259
+
"description": "Marks a class, method, or property as deprecated, indicating that it should no longer be used and may be removed in future versions.",
298
260
"body": "@Deprecated('${0:Reason}')"
299
261
},
300
262
"Meta": {
301
263
"scope": "flutter, dart",
302
264
"prefix": [
303
-
"@meta",
304
265
"meta",
266
+
"@meta",
305
267
"@annotation",
306
268
"annotation"
307
269
],
308
-
"description": "Meta annotation",
270
+
"description": "Applies a meta annotation to a class, method, or property, providing additional metadata for tooling or code analysis purposes.",
0 commit comments