@vscode/codicons 0.0.43 → 0.0.45-0

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 (97) hide show
  1. package/.fantasticonrc.js +12 -1
  2. package/.github/workflows/build.yml +17 -14
  3. package/RELEASING.md +32 -0
  4. package/_iconCloud/categories.csv +533 -0
  5. package/_iconCloud/categories.transforms.json +92 -0
  6. package/_iconCloud/categories.variables.json +48 -0
  7. package/_iconCloud/descriptions.csv +533 -0
  8. package/_iconCloud/descriptions.transforms.json +83 -0
  9. package/_iconCloud/descriptions.variables.json +47 -0
  10. package/_iconCloud/keywords.csv +533 -1
  11. package/_iconCloud/keywords.transforms.json +22 -13
  12. package/_iconCloud/keywords.variables.json +19 -18
  13. package/_iconCloud/manifest.json +11 -1
  14. package/_iconCloud/manifest.transforms.json +2 -2
  15. package/_iconCloud/metaphors.csv +533 -0
  16. package/_iconCloud/metaphors.transforms.json +92 -0
  17. package/_iconCloud/metaphors.variables.json +48 -0
  18. package/build/pipeline.yml +18 -7
  19. package/dist/codicon.css +14 -3
  20. package/dist/codicon.csv +16 -2
  21. package/dist/codicon.html +8171 -853
  22. package/dist/codicon.svg +1 -1
  23. package/dist/codicon.ttf +0 -0
  24. package/dist/codiconsLibrary.ts +13 -2
  25. package/dist/metadata.json +2672 -0
  26. package/package.json +6 -2
  27. package/scripts/check-metadata.js +126 -0
  28. package/scripts/embed-metadata.js +25 -0
  29. package/scripts/embed-svg-data.js +31 -0
  30. package/scripts/export-to-ts.js +9 -2
  31. package/scripts/svg-sprite.js +34 -6
  32. package/src/icons/add-small.svg +1 -0
  33. package/src/icons/ask.svg +1 -0
  34. package/src/icons/chat-sparkle-error.svg +1 -1
  35. package/src/icons/chat-sparkle-warning.svg +1 -1
  36. package/src/icons/chat-sparkle.svg +1 -1
  37. package/src/icons/clockface.svg +1 -0
  38. package/src/icons/cloud-download.svg +1 -1
  39. package/src/icons/cloud-small.svg +1 -0
  40. package/src/icons/cloud-upload.svg +1 -1
  41. package/src/icons/cloud.svg +1 -1
  42. package/src/icons/collection-small.svg +1 -0
  43. package/src/icons/copilot-blocked.svg +1 -1
  44. package/src/icons/copilot-error.svg +1 -1
  45. package/src/icons/copilot-in-progress.svg +1 -1
  46. package/src/icons/copilot-success.svg +1 -1
  47. package/src/icons/copilot-warning.svg +1 -1
  48. package/src/icons/debug-continue.svg +1 -1
  49. package/src/icons/debug-pause.svg +1 -1
  50. package/src/icons/debug-restart.svg +1 -1
  51. package/src/icons/debug-reverse-continue.svg +1 -1
  52. package/src/icons/debug-start.svg +1 -1
  53. package/src/icons/debug-step-back.svg +1 -1
  54. package/src/icons/debug-step-into.svg +1 -1
  55. package/src/icons/debug-step-out.svg +1 -1
  56. package/src/icons/debug-step-over.svg +1 -1
  57. package/src/icons/debug-stop.svg +1 -1
  58. package/src/icons/empty-window.svg +1 -1
  59. package/src/icons/exclude.svg +1 -1
  60. package/src/icons/extensions-large.svg +1 -1
  61. package/src/icons/extensions.svg +1 -1
  62. package/src/icons/filter-filled.svg +1 -1
  63. package/src/icons/filter.svg +1 -1
  64. package/src/icons/folder-active.svg +1 -1
  65. package/src/icons/git-branch-changes.svg +1 -1
  66. package/src/icons/git-branch-conflicts.svg +1 -1
  67. package/src/icons/git-branch-staged-changes.svg +1 -1
  68. package/src/icons/git-pull-request-create.svg +1 -1
  69. package/src/icons/git-pull-request-done.svg +1 -1
  70. package/src/icons/git-stash-apply.svg +1 -1
  71. package/src/icons/git-stash-pop.svg +1 -1
  72. package/src/icons/git-stash.svg +1 -1
  73. package/src/icons/index-zero.svg +1 -1
  74. package/src/icons/keyboard-tab-above.svg +1 -1
  75. package/src/icons/new-collection.svg +1 -1
  76. package/src/icons/new-file.svg +1 -1
  77. package/src/icons/new-folder.svg +1 -1
  78. package/src/icons/person-add.svg +1 -1
  79. package/src/icons/remove-small.svg +1 -0
  80. package/src/icons/report.svg +1 -1
  81. package/src/icons/run-all-coverage.svg +1 -1
  82. package/src/icons/run-coverage.svg +1 -1
  83. package/src/icons/run-errors.svg +1 -1
  84. package/src/icons/screen-cut.svg +1 -0
  85. package/src/icons/session-in-progress.svg +1 -0
  86. package/src/icons/unarchive.svg +1 -0
  87. package/src/icons/unfold.svg +1 -1
  88. package/src/icons/vm-active.svg +1 -1
  89. package/src/icons/vm-pending.svg +1 -1
  90. package/src/icons/vm-small.svg +1 -0
  91. package/src/icons/window-active.svg +1 -1
  92. package/src/icons/worktree-small.svg +1 -0
  93. package/src/icons/worktree.svg +1 -0
  94. package/src/template/mapping.json +1716 -633
  95. package/src/template/metadata.json +2672 -0
  96. package/src/template/preview.hbs +583 -321
  97. package/src/icons/git-lens.svg +0 -1
package/.fantasticonrc.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable */
2
2
  var pkg = require('./package.json');
3
3
  var path = require('path');
4
- var codepoints = require('./src/template/mapping.json');
4
+ var mapping = require('./src/template/mapping.json');
5
5
 
6
6
  // Ensure paths are platform-agnostic for Windows CI
7
7
  var inputDir = path.resolve(__dirname, 'src', 'icons');
@@ -9,6 +9,17 @@ var outputDir = path.resolve(__dirname, 'dist');
9
9
  var templateHtml = path.resolve(__dirname, 'src', 'template', 'preview.hbs');
10
10
  var templateCss = path.resolve(__dirname, 'src', 'template', 'styles.hbs');
11
11
 
12
+ // Convert new mapping format back to alias -> code format for fantasticon
13
+ // New format: { "code": ["alias1", "alias2", ...] }
14
+ // Fantasticon expects: { "alias1": code, "alias2": code, ... }
15
+ var codepoints = {};
16
+ Object.entries(mapping).forEach(function([code, aliases]) {
17
+ var codeNum = parseInt(code);
18
+ aliases.forEach(function(alias) {
19
+ codepoints[alias] = codeNum;
20
+ });
21
+ });
22
+
12
23
  module.exports = {
13
24
  name: 'codicon',
14
25
  prefix: 'codicon',
@@ -31,7 +31,7 @@ jobs:
31
31
  name: codicon-font-${{ github.sha }}.ttf
32
32
  path: dist/codicon.ttf
33
33
 
34
- - name: PR to microsoft/vscode # TODO: Separate "deploy:" step?
34
+ - name: PR to microsoft/vscode
35
35
  env:
36
36
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37
37
  run: |
@@ -42,23 +42,26 @@ jobs:
42
42
  cd vscode
43
43
  git checkout -b $BRANCH
44
44
 
45
- cp ../dist/codicon.ttf src/vs/base/browser/ui/codicons/codicon/
46
- cp ../dist/codiconsLibrary.ts src/vs/base/common/
45
+ cp -f ../dist/codicon.ttf src/vs/base/browser/ui/codicons/codicon/
46
+ cp -f ../dist/codiconsLibrary.ts src/vs/base/common/
47
47
  git add .
48
48
 
49
49
  git config user.name "${{ github.actor }}"
50
50
  git config user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
51
- git commit -m "$MESSAGE"
52
51
 
53
- # TODO: This doesn't work yet due to permissions
54
- #
55
- # git push -f origin $BRANCH
52
+ if git diff-index --quiet HEAD --; then
53
+ echo "No changes to commit"
54
+ exit 0
55
+ fi
56
+
57
+ git commit -m "$MESSAGE"
58
+ git push -f https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/microsoft/vscode.git $BRANCH
56
59
 
57
- # echo "${{ secrets.ACCESS_TOKEN }}" > token.txt
58
- # gh auth login --with-token < token.txt
60
+ echo "${{ secrets.GITHUB_TOKEN }}" > token.txt
61
+ gh auth login --with-token < token.txt
59
62
 
60
- # gh pr create \
61
- # --title "$MESSAGE" \
62
- # --body "" \
63
- # --base "main" \
64
- # --head "$BRANCH"
63
+ gh pr create \
64
+ --title "[Codicon bump] $MESSAGE" \
65
+ --body "This PR was created automatically from [vscode-codicons](https://github.com/microsoft/vscode-codicons)" \
66
+ --base "main" \
67
+ --head "$BRANCH"
package/RELEASING.md ADDED
@@ -0,0 +1,32 @@
1
+ ## Pre-release
2
+
3
+ Pre-release builds are created automatically for each push to `main`. The builds have the same `major.minor.patch` version as the latest release, but with an additional pre-release identifier `-N`, where `N` is the number of pre-releases since the latest release. For example, if the latest release is `0.0.0` and there have been 5 pre-releases since then, the next pre-release build will be versioned `0.0.0-5`.
4
+
5
+ ## Stable release
6
+
7
+ Stable releases are created by triggering the release pipeline: https://monacotools.visualstudio.com/Monaco/_build?definitionId=631
8
+ To create a stable release, you'll need to specify one of the following release types in the "Release Version" parameter:
9
+ - `prerelease`: for creating a pre-release build
10
+ - `patch`: for backward-compatible bug fixes
11
+ - `minor`: for backward-compatible new features
12
+ - `major`: for changes that break backward compatibility
13
+
14
+ Most of the time, you'll want to use `patch` or `minor`. For any of the above release types, the version number will be incremented automatically based on the latest stable release.
15
+
16
+ To create a stable release at a specific version, you can use `X.X.X` format (e.g., `1.2.3`). In this case, the version number will be set exactly as specified, regardless of the previous latest stable release.
17
+
18
+ ## Releasing from other branches
19
+
20
+ To release from a branch other than `main`, you can choose the branch from the "Select pipeline version by branch/tag" dropdown when you run the pipeline.
21
+ Then, specify the desired release type as described above.
22
+
23
+ Releasing from other branches is useful for creating recovery releases and pre-releases for testing.
24
+
25
+ ## Adopting updates in microsoft/vscode
26
+
27
+ Update the `@vscode/codicons` dependency version in `microsoft/vscode`'s `package.json`s:
28
+
29
+ - https://github.com/microsoft/vscode/blob/main/remote/web/package.json
30
+ - https://github.com/microsoft/vscode/blob/main/package.json
31
+
32
+ Then, run `npm i` in `microsoft/vscode` to update the `package-lock.json`s and make a PR with your changes.
@@ -0,0 +1,533 @@
1
+ IconKeyValue,Categories
2
+ account,user
3
+ activate-breakpoints,debug
4
+ add,action
5
+ archive,file
6
+ arrow-both,navigation
7
+ arrow-circle-down,navigation
8
+ arrow-circle-left,navigation
9
+ arrow-circle-right,navigation
10
+ arrow-circle-up,navigation
11
+ arrow-down,navigation
12
+ arrow-left,navigation
13
+ arrow-right,navigation
14
+ arrow-up,navigation
15
+ beaker,tool
16
+ bell,notification
17
+ bell-dot,notification
18
+ bold,text
19
+ book,content
20
+ bookmark,action
21
+ briefcase,general
22
+ broadcast,communication
23
+ browser,application
24
+ bug,debug
25
+ calendar,general
26
+ call-incoming,communication
27
+ call-outgoing,communication
28
+ case-sensitive,search
29
+ check,status
30
+ check-all,action
31
+ checklist,content
32
+ chevron-down,navigation
33
+ chevron-left,navigation
34
+ chevron-right,navigation
35
+ chevron-up,navigation
36
+ chrome-close,window
37
+ chrome-maximize,window
38
+ chrome-minimize,window
39
+ chrome-restore,window
40
+ circle-filled,shape
41
+ circle-large-filled,shape
42
+ circle-large,shape
43
+ circle-slash,status
44
+ circuit-board,tool
45
+ clear-all,action
46
+ clippy,action
47
+ close,action
48
+ close-all,action
49
+ cloud,storage
50
+ cloud-download,action
51
+ cloud-upload,action
52
+ code,development
53
+ coffee,general
54
+ collapse-all,action
55
+ color-mode,settings
56
+ comment,communication
57
+ comment-discussion,communication
58
+ copilot,ai
59
+ copy,action
60
+ credit-card,general
61
+ dash,general
62
+ dashboard,application
63
+ database,storage
64
+ debug,debug
65
+ debug-alt,debug
66
+ debug-console,debug
67
+ device-camera,device
68
+ device-camera-video,device
69
+ device-mobile,device
70
+ diff,git
71
+ diff-added,git
72
+ diff-ignored,git
73
+ diff-modified,git
74
+ diff-removed,git
75
+ diff-renamed,git
76
+ edit,action
77
+ error,status
78
+ extensions,application
79
+ eye,action
80
+ eye-closed,action
81
+ file,file
82
+ file-code,file
83
+ files,file
84
+ filter,action
85
+ folder,file
86
+ folder-opened,file
87
+ gear,settings
88
+ git-branch,git
89
+ git-commit,git
90
+ git-merge,git
91
+ git-pull-request,git
92
+ globe,general
93
+ graph,visualization
94
+ heart,general
95
+ home,navigation
96
+ info,status
97
+ issues,general
98
+ json,development
99
+ key,security
100
+ law,general
101
+ library,general
102
+ lightbulb,general
103
+ link,general
104
+ link-external,action
105
+ list-ordered,content
106
+ list-unordered,content
107
+ loading,status
108
+ location,general
109
+ mail,communication
110
+ markdown,development
111
+ menu,navigation
112
+ merge,action
113
+ mic,device
114
+ mirror,action
115
+ more,navigation
116
+ move,action
117
+ new-file,file
118
+ new-folder,file
119
+ note,content
120
+ notebook,development
121
+ organization,user
122
+ output,development
123
+ package,development
124
+ pass,status
125
+ person,user
126
+ pin,action
127
+ play,action
128
+ plug,general
129
+ preview,action
130
+ project,general
131
+ question,general
132
+ record,action
133
+ redo,action
134
+ refresh,action
135
+ regex,search
136
+ remote,connection
137
+ remove,action
138
+ replace,action
139
+ repo,git
140
+ report,general
141
+ rocket,general
142
+ save,action
143
+ save-all,action
144
+ search,search
145
+ server,general
146
+ settings,settings
147
+ settings-gear,settings
148
+ shield,security
149
+ source-control,git
150
+ sparkle,ai
151
+ split-horizontal,layout
152
+ split-vertical,layout
153
+ star,general
154
+ symbol-class,symbol
155
+ symbol-method,symbol
156
+ tag,general
157
+ terminal,application
158
+ text-size,text
159
+ trash,action
160
+ unlock,security
161
+ verified,status
162
+ watch,action
163
+ window,layout
164
+ workspace-trusted,status
165
+ zoom-in,action
166
+ zoom-out,action
167
+ add-small,action
168
+ agent,ai
169
+ alert,status
170
+ array,symbol
171
+ arrow-small-down,navigation
172
+ arrow-small-left,navigation
173
+ arrow-small-right,navigation
174
+ arrow-small-up,navigation
175
+ arrow-swap,action
176
+ attach,action
177
+ azure,brand
178
+ azure-devops,brand
179
+ beaker-stop,tool
180
+ bell-slash,notification
181
+ bell-slash-dot,notification
182
+ blank,general
183
+ bracket-dot,symbol
184
+ bracket-error,symbol
185
+ build,development
186
+ chat-sparkle,ai
187
+ chat-sparkle-error,ai
188
+ chat-sparkle-warning,ai
189
+ chip,device
190
+ circle-outline,shape
191
+ circle-small,shape
192
+ circle-small-filled,shape
193
+ clockface,general
194
+ clone,action
195
+ cloud-small,storage
196
+ code-oss,brand
197
+ code-review,git
198
+ collection,general
199
+ collection-small,general
200
+ combine,action
201
+ comment-discussion-quote,communication
202
+ comment-discussion-sparkle,ai
203
+ comment-draft,communication
204
+ comment-unresolved,communication
205
+ compass,navigation
206
+ compass-active,navigation
207
+ compass-dot,navigation
208
+ copilot-blocked,ai
209
+ copilot-error,ai
210
+ copilot-in-progress,ai
211
+ copilot-large,ai
212
+ copilot-not-connected,ai
213
+ copilot-snooze,ai
214
+ copilot-success,ai
215
+ copilot-unavailable,ai
216
+ copilot-warning,ai
217
+ copilot-warning-large,ai
218
+ coverage,debug
219
+ cursor,general
220
+ debug-all,debug
221
+ debug-alt-small,debug
222
+ debug-breakpoint-conditional,debug
223
+ debug-breakpoint-conditional-unverified,debug
224
+ debug-breakpoint-data,debug
225
+ debug-breakpoint-data-unverified,debug
226
+ debug-breakpoint-function,debug
227
+ debug-breakpoint-function-unverified,debug
228
+ debug-breakpoint-log,debug
229
+ debug-breakpoint-log-unverified,debug
230
+ debug-breakpoint-unsupported,debug
231
+ debug-connected,debug
232
+ debug-continue,debug
233
+ debug-continue-small,debug
234
+ debug-coverage,debug
235
+ debug-disconnect,debug
236
+ debug-line-by-line,debug
237
+ debug-pause,debug
238
+ debug-rerun,debug
239
+ debug-restart,debug
240
+ debug-restart-frame,debug
241
+ debug-reverse-continue,debug
242
+ debug-stackframe,debug
243
+ debug-stackframe-active,debug
244
+ debug-start,debug
245
+ debug-step-back,debug
246
+ debug-step-into,debug
247
+ debug-step-out,debug
248
+ debug-step-over,debug
249
+ debug-stop,debug
250
+ diff-multiple,git
251
+ diff-single,git
252
+ discard,action
253
+ download,action
254
+ edit-code,development
255
+ edit-session,action
256
+ edit-sparkle,ai
257
+ editor-layout,layout
258
+ empty-window,window
259
+ eraser,action
260
+ error-small,status
261
+ exclude,action
262
+ expand-all,action
263
+ export,action
264
+ extensions-large,application
265
+ feedback,communication
266
+ file-binary,file
267
+ file-media,file
268
+ file-pdf,file
269
+ file-submodule,git
270
+ file-symlink-directory,file
271
+ file-symlink-file,file
272
+ file-text,file
273
+ file-zip,file
274
+ filter-filled,action
275
+ flag,status
276
+ flame,status
277
+ fold,action
278
+ fold-down,action
279
+ fold-up,action
280
+ folder-active,file
281
+ folder-library,file
282
+ forward,navigation
283
+ game,general
284
+ gift,general
285
+ gist,git
286
+ gist-fork,git
287
+ gist-private,git
288
+ gist-secret,git
289
+ git-branch-changes,git
290
+ git-branch-conflicts,git
291
+ git-branch-staged-changes,git
292
+ git-compare,git
293
+ git-pull-request-closed,git
294
+ git-pull-request-create,git
295
+ git-pull-request-done,git
296
+ git-pull-request-draft,git
297
+ git-pull-request-go-to-changes,git
298
+ git-pull-request-new-changes,git
299
+ git-stash,git
300
+ git-stash-apply,git
301
+ git-stash-pop,git
302
+ github-action,git
303
+ github-alt,brand
304
+ github-inverted,brand
305
+ github-project,git
306
+ go-to-editing-session,action
307
+ go-to-search,search
308
+ grabber,action
309
+ graph-left,visualization
310
+ graph-line,visualization
311
+ graph-scatter,visualization
312
+ gripper,action
313
+ group-by-ref-type,action
314
+ heart-filled,general
315
+ history,general
316
+ horizontal-rule,text
317
+ hubot,ai
318
+ inbox,communication
319
+ indent,text
320
+ index-zero,symbol
321
+ insert,action
322
+ inspect,debug
323
+ issue-draft,git
324
+ issue-reopened,git
325
+ italic,text
326
+ jersey,general
327
+ kebab-vertical,navigation
328
+ keyboard-tab,text
329
+ keyboard-tab-above,text
330
+ keyboard-tab-below,text
331
+ layers,layout
332
+ layers-active,layout
333
+ layers-dot,layout
334
+ layout,layout
335
+ layout-activitybar-left,layout
336
+ layout-activitybar-right,layout
337
+ layout-centered,layout
338
+ layout-menubar,layout
339
+ layout-panel,layout
340
+ layout-panel-center,layout
341
+ layout-panel-dock,layout
342
+ layout-panel-justify,layout
343
+ layout-panel-left,layout
344
+ layout-panel-off,layout
345
+ layout-panel-right,layout
346
+ layout-sidebar-left,layout
347
+ layout-sidebar-left-dock,layout
348
+ layout-sidebar-left-off,layout
349
+ layout-sidebar-right,layout
350
+ layout-sidebar-right-dock,layout
351
+ layout-sidebar-right-off,layout
352
+ layout-statusbar,layout
353
+ lightbulb-autofix,action
354
+ lightbulb-empty,general
355
+ lightbulb-sparkle,ai
356
+ list-filter,action
357
+ list-flat,content
358
+ list-selection,content
359
+ list-tree,content
360
+ live-share,communication
361
+ lock-small,security
362
+ log-in,user
363
+ log-out,user
364
+ logo-github,brand
365
+ magnet,tool
366
+ mail-read,communication
367
+ mail-reply,communication
368
+ map,general
369
+ map-filled,general
370
+ map-vertical,general
371
+ map-vertical-filled,general
372
+ mcp,development
373
+ megaphone,communication
374
+ mention,communication
375
+ merge-into,git
376
+ mic-filled,device
377
+ milestone,general
378
+ mortar-board,general
379
+ multiple-windows,window
380
+ music,general
381
+ mute,device
382
+ new-collection,general
383
+ newline,text
384
+ no-newline,text
385
+ notebook-template,file
386
+ octoface,brand
387
+ open-in-product,action
388
+ open-preview,action
389
+ paintcan,tool
390
+ pass-filled,status
391
+ percentage,symbol
392
+ person-add,user
393
+ piano,general
394
+ pie-chart,visualization
395
+ pinned,action
396
+ pinned-dirty,action
397
+ play-circle,action
398
+ preserve-case,search
399
+ primitive-square,shape
400
+ pulse,status
401
+ python,brand
402
+ quote,text
403
+ quotes,text
404
+ radio-tower,communication
405
+ reactions,communication
406
+ record-keys,action
407
+ record-small,action
408
+ references,development
409
+ remote-explorer,connection
410
+ remove-small,action
411
+ rename,action
412
+ replace-all,action
413
+ repo-clone,git
414
+ repo-fetch,git
415
+ repo-force-push,git
416
+ repo-pinned,git
417
+ repo-pull,git
418
+ repo-push,git
419
+ repo-selected,git
420
+ repo-sync,git
421
+ request-changes,git
422
+ robot,ai
423
+ root-folder,file
424
+ root-folder-opened,file
425
+ rss,communication
426
+ ruby,brand
427
+ run-above,action
428
+ run-all,action
429
+ run-all-coverage,debug
430
+ run-below,action
431
+ run-coverage,debug
432
+ run-errors,debug
433
+ run-with-deps,action
434
+ save-as,action
435
+ screen-full,window
436
+ screen-normal,window
437
+ search-fuzzy,search
438
+ search-large,search
439
+ search-sparkle,ai
440
+ search-stop,search
441
+ send,communication
442
+ send-to-remote-agent,connection
443
+ server-environment,general
444
+ server-process,general
445
+ session-in-progress,status
446
+ share,action
447
+ skip,action
448
+ smiley,general
449
+ snake,general
450
+ sort-precedence,action
451
+ sparkle-filled,ai
452
+ squirrel,general
453
+ star-full,general
454
+ star-half,general
455
+ stop-circle,action
456
+ strikethrough,text
457
+ surround-with,development
458
+ symbol-boolean,symbol
459
+ symbol-color,symbol
460
+ symbol-constant,symbol
461
+ symbol-enum,symbol
462
+ symbol-enum-member,symbol
463
+ symbol-field,symbol
464
+ symbol-file,symbol
465
+ symbol-interface,symbol
466
+ symbol-key,symbol
467
+ symbol-keyword,symbol
468
+ symbol-method-arrow,symbol
469
+ symbol-misc,symbol
470
+ symbol-module,symbol
471
+ symbol-numeric,symbol
472
+ symbol-operator,symbol
473
+ symbol-parameter,symbol
474
+ symbol-property,symbol
475
+ symbol-reference,symbol
476
+ symbol-ruler,symbol
477
+ symbol-snippet,symbol
478
+ symbol-string,symbol
479
+ symbol-structure,symbol
480
+ sync-ignored,action
481
+ table,content
482
+ target,general
483
+ tasklist,content
484
+ telescope,search
485
+ terminal-bash,application
486
+ terminal-cmd,application
487
+ terminal-debian,application
488
+ terminal-git-bash,application
489
+ terminal-linux,application
490
+ terminal-powershell,application
491
+ terminal-tmux,application
492
+ terminal-ubuntu,application
493
+ thinking,ai
494
+ three-bars,navigation
495
+ thumbsdown,general
496
+ thumbsdown-filled,general
497
+ thumbsup,general
498
+ thumbsup-filled,general
499
+ tools,tool
500
+ triangle-down,shape
501
+ triangle-left,shape
502
+ triangle-right,shape
503
+ triangle-up,shape
504
+ twitter,brand
505
+ type-hierarchy,development
506
+ type-hierarchy-sub,development
507
+ type-hierarchy-super,development
508
+ unarchive,file
509
+ unfold,action
510
+ ungroup-by-ref-type,action
511
+ unmute,device
512
+ unverified,status
513
+ variable,symbol
514
+ variable-group,symbol
515
+ verified-filled,status
516
+ versions,git
517
+ vm,device
518
+ vm-active,device
519
+ vm-connect,device
520
+ vm-outline,device
521
+ vm-running,device
522
+ vm-small,device
523
+ vr,device
524
+ vscode,brand
525
+ vscode-insiders,brand
526
+ wand,tool
527
+ whitespace,text
528
+ whole-word,search
529
+ window-active,window
530
+ word-wrap,text
531
+ workspace-unknown,status
532
+ workspace-untrusted,status
533
+ zap,general