产品图标参考
Visual Studio Code 包含一套用于视图和编辑器的内置图标,这些图标也可用于悬停提示、状态栏和扩展程序。这些图标是产品图标,与用于整个 UI 中文件名旁边的文件图标不同。
VS Code 附带的产品图标包含在 Codicon 图标字体中,并构成了默认产品图标主题。扩展程序可以提供新的产品图标主题来重新定义这些图标,从而为 VS Code 提供全新的外观。
为了实现这一点,所有产品图标都通过 ID 进行标识。图标标识符用于 UI 组件的标签中 ($(pencil)),在 API 中作为 ThemeIcon,并在需要图标的贡献点中使用。
图标标识符与实际图标字体字形的关联由产品图标主题完成。
标签中的图标
图标可用于悬停提示中的 Markdown 标签、StatusBarItem 文本和 QuickPickItem 标签 API。在 Markdown 中添加图标的语法是 $(iconIdentifier)
$(alert);
您还可以嵌入文本并使用多个图标
$(eye) $(heart) $(mark-github) GitHub
要在标签内放置字面量 ${...} 文本,请使用反斜杠转义 $
\$(eye)
动画
您可以通过在图标名称后附加 ~spin 来对以下图标应用旋转动画
syncloadinggear
$(sync~spin)
图标贡献点
图标贡献点允许扩展程序通过 ID 定义附加图标,并提供一个默认图标。然后,该图标 ID 可以由扩展程序(或依赖于该扩展程序的任何其他扩展程序)用于标签 ($(iconId)) 或所有可以使用 ThemeIcon 的地方 (new ThemeIcon("iconId"))。
"contributes": {
"icons": {
"distro-ubuntu": {
"description": "Ubuntu icon",
"default": {
"fontPath": "./distroicons.woff",
"fontCharacter": "\\E001"
}
},
"distro-fedora": {
"description": "Ubuntu icon",
"default": {
"fontPath": "./distroicons.woff",
"fontCharacter": "\\E002"
}
}
}
}
产品图标主题可以重新定义图标(如果它们知道图标 ID)。
图标列表
以下是按标识符列出的内置产品图标。
图标的 ID 标识了图标的使用位置。默认 codicon ID 描述了默认使用哪个 codicon 库中的图标,预览显示了该图标的外观。
产品图标主题可以单独替换每个图标,也可以替换来自 codicon 库的所有图标。
| 预览 | 标识符 | 默认 codicon ID | 描述 |
|---|---|---|---|
| accounts-view-bar-icon | account | 视图栏中的帐户图标。 | |
| breakpoints-activate | activate-breakpoints | 断点视图中激活操作的图标。 | |
| breakpoints-remove-all | close-all | 断点视图中删除所有操作的图标。 | |
| breakpoints-view-icon | debug-alt | 断点视图的视图图标。 | |
| callhierarchy-incoming | call-incoming | 调用层次结构视图中传入调用的图标。 | |
| callhierarchy-outgoing | call-outgoing | 调用层次结构视图中传出调用的图标。 | |
| callstack-view-icon | debug-alt | 调用堆栈视图的视图图标。 | |
| callstack-view-session | bug | 调用堆栈视图中会话图标的图标。 | |
| chat-editor-label-icon | comment-discussion | 聊天编辑器标签的图标。 | |
| comments-view-icon | comment-discussion | 评论视图的视图图标。 | |
| debug-breakpoint | debug-breakpoint | 断点的图标。 | |
| debug-breakpoint-conditional | debug-breakpoint-conditional | 条件断点的图标。 | |
| debug-breakpoint-conditional-disabled | debug-breakpoint-conditional-disabled | 已禁用条件断点的图标。 | |
| debug-breakpoint-conditional-unverified | debug-breakpoint-conditional-unverified | 未验证条件断点的图标。 | |
| debug-breakpoint-data | debug-breakpoint-data | 数据断点的图标。 | |
| debug-breakpoint-data-disabled | debug-breakpoint-data-disabled | 已禁用数据断点的图标。 | |
| debug-breakpoint-data-unverified | debug-breakpoint-data-unverified | 未验证数据断点的图标。 | |
| debug-breakpoint-disabled | debug-breakpoint-disabled | 已禁用断点的图标。 | |
| debug-breakpoint-function | debug-breakpoint-function | 函数断点的图标。 | |
| debug-breakpoint-function-disabled | debug-breakpoint-function-disabled | 已禁用函数断点的图标。 | |
| debug-breakpoint-function-unverified | debug-breakpoint-function-unverified | 未验证函数断点的图标。 | |
| debug-breakpoint-log | debug-breakpoint-log | 日志断点的图标。 | |
| debug-breakpoint-log-disabled | debug-breakpoint-log-disabled | 已禁用日志断点的图标。 | |
| debug-breakpoint-log-unverified | debug-breakpoint-log-unverified | 未验证日志断点的图标。 | |
| debug-breakpoint-unsupported | debug-breakpoint-unsupported | 不支持断点的图标。 | |
| debug-breakpoint-unverified | debug-breakpoint-unverified | 未验证断点的图标。 | |
| debug-collapse-all | collapse-all | 调试视图中全部折叠操作的图标。 | |
| debug-configure | gear | 调试配置操作的图标。 | |
| debug-console | debug-console | 打开调试控制台操作的图标。 | |
| debug-console-clear-all | clear-all | 调试控制台中清除所有操作的图标。 | |
| debug-console-evaluation-input | arrow-small-right | 调试评估输入标记的图标。 | |
| debug-console-evaluation-prompt | chevron-right | 调试评估提示的图标。 | |
| debug-console-view-icon | debug-console | 调试控制台视图的视图图标。 | |
| debug-continue | debug-continue | 调试继续操作的图标。 | |
| debug-disconnect | debug-disconnect | 调试断开连接操作的图标。 | |
| debug-gripper | gripper | 调试栏抓取器的图标。 | |
| debug-hint | debug-hint | 在编辑器字形边距中悬停时显示的断点提示图标。 | |
| debug-pause | debug-pause | 调试暂停操作的图标。 | |
| debug-restart | debug-restart | 调试重新启动操作的图标。 | |
| debug-restart-frame | debug-restart-frame | 调试重新启动帧操作的图标。 | |
| debug-reverse-continue | debug-reverse-continue | 调试反向继续操作的图标。 | |
| debug-stackframe | debug-stackframe | 编辑器字形边距中显示的堆栈帧图标。 | |
| debug-stackframe-focused | debug-stackframe-focused | 编辑器字形边距中显示的焦点堆栈帧图标。 | |
| debug-start | debug-start | 调试启动操作的图标。 | |
| debug-step-back | debug-step-back | 调试步退操作的图标。 | |
| debug-step-into | debug-step-into | 调试步入操作的图标。 | |
| debug-step-out | debug-step-out | 调试步出操作的图标。 | |
| debug-step-over | debug-step-over | 调试步过操作的图标。 | |
| debug-stop | debug-stop | 调试停止操作的图标。 | |
| default-view-icon | window | 默认视图图标。 | |
| diff-editor-next-change | arrow-down | 差异编辑器中下一个更改操作的图标。 | |
| diff-editor-previous-change | arrow-up | 差异编辑器中上一个更改操作的图标。 | |
| diff-editor-toggle-whitespace | whitespace | 差异编辑器中切换空格操作的图标。 | |
| diff-insert | add | 差异编辑器中插入的行装饰。 | |
| diff-remove | remove | 差异编辑器中删除的行装饰。 | |
| diff-review-close | close | 差异审查中的“关闭”图标。 | |
| diff-review-insert | add | 差异审查中的“插入”图标。 | |
| diff-review-remove | remove | 差异审查中的“删除”图标。 | |
| disassembly-editor-label-icon | debug | 反汇编编辑器标签的图标。 | |
| explorer-view-icon | files | 资源管理器视图的视图图标。 | |
| extensions-clear-search-results | clear-all | 扩展视图中“清除搜索结果”操作的图标。 | |
| extensions-configure-recommended | pencil | 扩展视图中“配置推荐扩展”操作的图标。 | |
| extensions-editor-label-icon | extensions | 扩展编辑器标签的图标。 | |
| extensions-filter | filter | 扩展视图中“筛选”操作的图标。 | |
| extensions-info-message | info | 扩展编辑器中与信息消息一起显示的图标。 | |
| extensions-install-count | cloud-download | 扩展视图和编辑器中与安装计数一起显示的图标。 | |
| extensions-install-local-in-remote | cloud-download | 扩展视图中“在远程安装本地扩展”操作的图标。 | |
| extensions-install-workspace-recommended | cloud-download | 扩展视图中“安装工作区推荐扩展”操作的图标。 | |
| extensions-manage | gear | 扩展视图中“管理”操作的图标。 | |
| extensions-rating | star | 扩展视图和编辑器中与评分一起显示的图标。 | |
| extensions-refresh | refresh | 扩展视图中“刷新”操作的图标。 | |
| extensions-remote | remote | 扩展视图和编辑器中指示扩展为远程的图标。 | |
| extensions-star-empty | star-empty | 扩展编辑器中用于评分的空星图标。 | |
| extensions-star-full | star-full | 扩展编辑器中用于评分的满星图标。 | |
| extensions-star-half | star-half | 扩展编辑器中用于评分的半星图标。 | |
| extensions-sync-enabled | sync | 指示扩展已同步的图标。 | |
| extensions-sync-ignored | sync-ignored | 指示扩展在同步时被忽略的图标。 | |
| extensions-view-icon | extensions | 扩展视图的视图图标。 | |
| extensions-warning-message | warning | 扩展编辑器中与警告消息一起显示的图标。 | |
| find-collapsed | chevron-right | 指示编辑器查找小部件已折叠的图标。 | |
| find-expanded | chevron-down | 指示编辑器查找小部件已展开的图标。 | |
| find-next-match | arrow-down | 编辑器查找小部件中“查找下一个”的图标。 | |
| find-previous-match | arrow-up | 编辑器查找小部件中“查找上一个”的图标。 | |
| find-replace | replace | 编辑器查找小部件中“替换”的图标。 | |
| find-replace-all | replace-all | 编辑器查找小部件中“全部替换”的图标。 | |
| find-selection | selection | 编辑器查找小部件中“在选中项中查找”的图标。 | |
| folding-collapsed | chevron-right | 编辑器字形边距中折叠范围的图标。 | |
| folding-expanded | chevron-down | 编辑器字形边距中展开范围的图标。 | |
| getting-started-beginner | lightbulb | 用于入门初学者类别的图标。 | |
| getting-started-codespaces | github | 用于入门 codespaces 类别的图标。 | |
| getting-started-item-checked | pass-filled | 用于表示已完成的入门项目。 | |
| getting-started-item-unchecked | circle-large-outline | 用于表示未完成的入门项目。 | |
| getting-started-setup | heart | 用于入门设置类别的图标。 | |
| goto-next-location | arrow-down | 转到下一个编辑器位置的图标。 | |
| goto-previous-location | arrow-up | 转到上一个编辑器位置的图标。 | |
| keybindings-add | add | 键绑定 UI 中添加操作的图标。 | |
| keybindings-edit | edit | 键绑定 UI 中编辑操作的图标。 | |
| keybindings-editor-label-icon | keyboard | 键绑定编辑器标签的图标。 | |
| keybindings-record-keys | record-keys | 键绑定 UI 中“录制按键”操作的图标。 | |
| keybindings-sort | sort-precedence | 键绑定 UI 中“按优先级排序”切换的图标。 | |
| loaded-scripts-view-icon | debug-alt | 已加载脚本视图的视图图标。 | |
| marker-navigation-next | chevron-down | 转到下一个标记的图标。 | |
| marker-navigation-previous | chevron-up | 转到上一个标记的图标。 | |
| markers-view-filter | filter | 标记视图中筛选器配置的图标。 | |
| markers-view-icon | warning | 标记视图的视图图标。 | |
| markers-view-multi-line-collapsed | chevron-down | 指示标记视图中多行已折叠的图标。 | |
| markers-view-multi-line-expanded | chevron-up | 指示标记视图中多行已展开的图标。 | |
| multi-diff-editor-label-icon | diff-multiple | 多重差异编辑器标签的图标。 | |
| notebook-clear | clear-all | 用于清除笔记本编辑器中单元格输出的图标。 | |
| notebook-collapsed | chevron-right | 用于注释笔记本编辑器中已折叠部分的图标。 | |
| notebook-delete-cell | trash | 用于删除笔记本编辑器中单元格的图标。 | |
| notebook-edit | pencil | 用于编辑笔记本编辑器中单元格的图标。 | |
| notebook-execute | play | 用于在笔记本编辑器中执行的图标。 | |
| notebook-execute-all | run-all | 用于执行笔记本编辑器中所有单元格的图标。 | |
| notebook-expanded | chevron-down | 用于注释笔记本编辑器中已展开部分的图标。 | |
| notebook-kernel-configure | settings-gear | 笔记本编辑器中内核配置小部件中的配置图标。 | |
| notebook-kernel-select | server-environment | 用于选择笔记本编辑器中内核的配置图标。 | |
| notebook-mimetype | code | 笔记本编辑器中 MIME 类型的图标。 | |
| notebook-move-down | arrow-down | 用于在笔记本编辑器中向下移动单元格的图标。 | |
| notebook-move-up | arrow-up | 用于在笔记本编辑器中向上移动单元格的图标。 | |
| notebook-open-as-text | file-code | 用于在文本编辑器中打开笔记本的图标。 | |
| notebook-render-output | 预览 | 用于在差异编辑器中渲染输出的图标。 | |
| notebook-revert | discard | 用于在笔记本编辑器中还原的图标。 | |
| notebook-split-cell | split-vertical | 用于在笔记本编辑器中拆分单元格的图标。 | |
| notebook-state-error | error | 指示笔记本编辑器中错误状态的图标。 | |
| notebook-state-success | check | 指示笔记本编辑器中成功状态的图标。 | |
| notebook-stop | primitive-square | 用于在笔记本编辑器中停止执行的图标。 | |
| notebook-stop-edit | check | 用于在笔记本编辑器中停止编辑单元格的图标。 | |
| notebook-unfold | unfold | 用于在笔记本编辑器中展开单元格的图标。 | |
| notifications-clear | close | 通知中清除操作的图标。 | |
| notifications-clear-all | clear-all | 通知中清除所有操作的图标。 | |
| notifications-collapse | chevron-down | 通知中折叠操作的图标。 | |
| notifications-configure | gear | 通知中配置操作的图标。 | |
| notifications-expand | chevron-up | 通知中展开操作的图标。 | |
| notifications-hide | chevron-down | 通知中隐藏操作的图标。 | |
| open-editors-view-icon | book | 打开的编辑器视图的视图图标。 | |
| outline-view-icon | symbol-class | 大纲视图的视图图标。 | |
| output-view-icon | output | 输出视图的视图图标。 | |
| panel-close | close | 关闭面板的图标。 | |
| panel-maximize | chevron-up | 最大化面板的图标。 | |
| panel-restore | chevron-down | 还原面板的图标。 | |
| parameter-hints-next | chevron-down | 显示下一个参数提示的图标。 | |
| parameter-hints-previous | chevron-up | 显示上一个参数提示的图标。 | |
| ports-forward-icon | plus | 转发操作的图标。 | |
| ports-open-browser-icon | globe | 打开浏览器操作的图标。 | |
| ports-stop-forward-icon | x | 停止转发操作的图标。 | |
| ports-view-icon | plug | 远程端口视图的视图图标。 | |
| preferences-clear-input | clear-all | 设置和键绑定 UI 中清除输入的图标。 | |
| preferences-open-settings | go-to-file | 打开设置命令的图标。 | |
| private-ports-view-icon | lock | 表示私有远程端口的图标。 | |
| public-ports-view-icon | eye | 表示公共远程端口的图标。 | |
| refactor-preview-view-icon | lightbulb | 重构预览视图的视图图标。 | |
| remote-explorer-documentation | book | 远程资源管理器视图中的文档图标。 | |
| remote-explorer-feedback | 远程资源管理器视图中的反馈图标。 | ||
| remote-explorer-get-started | star | 远程资源管理器视图中的入门图标。 | |
| remote-explorer-report-issues | comment | 远程资源管理器视图中的报告问题图标。 | |
| remote-explorer-review-issues | issues | 远程资源管理器视图中的审查问题图标。 | |
| remote-explorer-view-icon | remote-explorer | 远程资源管理器视图的视图图标。 | |
| review-comment-collapse | chevron-up | 折叠审查评论的图标。 | |
| run-view-icon | debug-alt | 运行和调试视图的视图图标。 | |
| runtime-extensions-editor-label-icon | extensions | 运行时扩展编辑器标签的图标。 | |
| search-clear-results | clear-all | 搜索视图中清除结果的图标。 | |
| search-collapse-results | collapse-all | 搜索视图中折叠结果的图标。 | |
| search-details | ellipsis | 使搜索详细信息可见的图标。 | |
| search-editor-label-icon | search | 搜索编辑器标签的图标。 | |
| search-expand-results | expand-all | 搜索视图中展开结果的图标。 | |
| search-hide-replace | chevron-right | 搜索视图中折叠替换部分的图标。 | |
| search-new-editor | new-file | 打开新搜索编辑器操作的图标。 | |
| search-refresh | refresh | 搜索视图中刷新的图标。 | |
| search-remove | close | 删除搜索结果的图标。 | |
| search-replace | replace | 搜索视图中替换的图标。 | |
| search-replace-all | replace-all | 搜索视图中全部替换的图标。 | |
| search-show-context | list-selection | 在搜索编辑器中切换上下文的图标。 | |
| search-show-replace | chevron-down | 搜索视图中展开替换部分的图标。 | |
| search-stop | search-stop | 搜索视图中停止的图标。 | |
| search-view-icon | search | 搜索视图的视图图标。 | |
| settings-add | add | 设置 UI 中添加操作的图标。 | |
| settings-discard | discard | 设置 UI 中放弃操作的图标。 | |
| settings-edit | edit | 设置 UI 中编辑操作的图标。 | |
| settings-editor-label-icon | settings | 设置编辑器标签的图标。 | |
| settings-folder-dropdown | triangle-down | 拆分 JSON 设置编辑器中文件夹下拉按钮的图标。 | |
| settings-group-collapsed | chevron-right | 拆分 JSON 设置编辑器中已折叠部分的图标。 | |
| settings-group-expanded | chevron-down | 拆分 JSON 设置编辑器中已展开部分的图标。 | |
| settings-more-action | gear | 设置 UI 中“更多操作”操作的图标。 | |
| settings-remove | close | 设置 UI 中删除操作的图标。 | |
| settings-sync-view-icon | sync | 设置同步视图的视图图标。 | |
| settings-view-bar-icon | settings-gear | 视图栏中的设置图标。 | |
| source-control-view-icon | source-control | 源代码控制视图的视图图标。 | |
| suggest-more-info | chevron-right | 建议小部件中更多信息的图标。 | |
| tasks-list-configure | gear | 任务选择列表中配置图标。 | |
| tasks-remove | close | 任务选择列表中删除的图标。 | |
| terminal-kill | trash | 终止终端实例的图标。 | |
| terminal-new | add | 创建新终端实例的图标。 | |
| terminal-rename | gear | 终端快速菜单中重命名的图标。 | |
| terminal-view-icon | terminal | 终端视图的视图图标。 | |
| test-view-icon | beaker | 测试视图的视图图标。 | |
| testing-cancel-icon | close | 取消正在进行的测试运行的图标。 | |
| testing-debug-icon | debug-alt | “调试测试”操作的图标。 | |
| testing-error-icon | warning | 显示有错误的测试的图标。 | |
| testing-failed-icon | close | 显示失败测试的图标。 | |
| testing-passed-icon | pass | 显示通过测试的图标。 | |
| testing-queued-icon | watch | 显示排队等待测试的图标。 | |
| testing-run-all-icon | run-all | “运行所有测试”操作的图标。 | |
| testing-run-icon | run | “运行测试”操作的图标。 | |
| testing-show-as-list-icon | list-tree | 测试资源管理器作为树禁用时显示的图标。 | |
| testing-skipped-icon | debug-step-over | 显示已跳过测试的图标。 | |
| testing-unset-icon | circle-outline | 显示处于未设置状态的测试的图标。 | |
| timeline-open | history | 打开时间线操作的图标。 | |
| timeline-pin | pin | 固定时间线操作的图标。 | |
| timeline-refresh | refresh | 刷新时间线操作的图标。 | |
| timeline-unpin | pinned | 取消固定时间线操作的图标。 | |
| timeline-view-icon | history | 时间线视图的视图图标。 | |
| variables-view-icon | debug-alt | 变量视图的视图图标。 | |
| view-pane-container-collapsed | chevron-right | 已折叠视图窗格容器的图标。 | |
| view-pane-container-expanded | chevron-down | 已展开视图窗格容器的图标。 | |
| watch-expressions-add | add | 监视视图中添加操作的图标。 | |
| watch-expressions-add-function-breakpoint | add | 监视视图中添加函数断点操作的图标。 | |
| watch-expressions-remove-all | close-all | 监视视图中删除所有操作的图标。 | |
| watch-view-icon | debug-alt | 监视视图的视图图标。 | |
| widget-close | close | 小部件中关闭操作的图标。 | |
| workspace-trust-editor-label-icon | shield | 工作区信任编辑器标签的图标。 |
Codicon 库包含 VS Code 视图中使用的所有图标以及一组有用的图标。
VS Code 扩展程序可以在标签、视图和树中使用这些图标。
| 预览 | 标识符 |
|---|---|
| account | |
| activate-breakpoints | |
| add | |
| alert | |
| archive | |
| 数组 | |
| arrow-both | |
| arrow-circle-down | |
| arrow-circle-left | |
| arrow-circle-right | |
| arrow-circle-up | |
| arrow-down | |
| arrow-left | |
| arrow-right | |
| arrow-small-down | |
| arrow-small-left | |
| arrow-small-right | |
| arrow-small-up | |
| arrow-swap | |
| arrow-up | |
| azure-devops | |
| azure | |
| beaker-stop | |
| beaker | |
| bell | |
| bell-dot | |
| bell-slash | |
| bell-slash-dot | |
| bold | |
| book | |
| bookmark | |
| bracket-dot | |
| bracket-error | |
| bracket | |
| briefcase | |
| broadcast | |
| browser | |
| bug | |
| calendar | |
| call-incoming | |
| call-outgoing | |
| case-sensitive | |
| check | |
| check-all | |
| checklist | |
| chevron-down | |
| chevron-left | |
| chevron-right | |
| chevron-up | |
| chip | |
| chrome-close | |
| chrome-maximize | |
| chrome-minimize | |
| chrome-restore | |
| circle-filled | |
| circle-large-filled | |
| circle-large-outline | |
| circle-outline | |
| circle-slash | |
| circuit-board | |
| clear-all | |
| clippy | |
| clock | |
| clone | |
| close | |
| close-all | |
| close-dirty | |
| cloud | |
| cloud-download | |
| cloud-upload | |
| code | |
| coffee | |
| collapse-all | |
| color-mode | |
| combine | |
| comment | |
| comment-add | |
| comment-discussion | |
| comment-draft | |
| comment-unresolved | |
| compare-changes | |
| compass-active | |
| compass-dot | |
| compass | |
| console | |
| copilot | |
| copy | |
| credit-card | |
| dash | |
| dashboard | |
| database | |
| debug-all | |
| debug | |
| debug-alt | |
| debug-alt-small | |
| debug-breakpoint | |
| debug-breakpoint-conditional | |
| debug-breakpoint-conditional-disabled | |
| debug-breakpoint-conditional-unverified | |
| debug-breakpoint-data | |
| debug-breakpoint-data-disabled | |
| debug-breakpoint-data-unverified | |
| debug-breakpoint-disabled | |
| debug-breakpoint-function | |
| debug-breakpoint-function-disabled | |
| debug-breakpoint-function-unverified | |
| debug-breakpoint-log | |
| debug-breakpoint-log-disabled | |
| debug-breakpoint-log-unverified | |
| debug-breakpoint-unsupported | |
| debug-breakpoint-unverified | |
| debug-console | |
| debug-continue-small | |
| debug-continue | |
| debug-coverage | |
| debug-disconnect | |
| debug-hint | |
| debug-line-by-line | |
| debug-pause | |
| debug-rerun | |
| debug-restart | |
| debug-restart-frame | |
| debug-reverse-continue | |
| debug-stackframe | |
| debug-stackframe-active | |
| debug-stackframe-dot | |
| debug-stackframe-focused | |
| debug-start | |
| debug-step-back | |
| debug-step-into | |
| debug-step-out | |
| debug-step-over | |
| debug-stop | |
| desktop-download | |
| device-camera | |
| device-camera-video | |
| device-desktop | |
| device-mobile | |
| diff | |
| diff-added | |
| diff-ignored | |
| diff-modified | |
| diff-removed | |
| diff-renamed | |
| discard | |
| edit | |
| editor-layout | |
| ellipsis | |
| empty-window | |
| error-small | |
| error | |
| exclude | |
| expand-all | |
| export | |
| extensions | |
| eye | |
| eye-closed | |
| eye-unwatch | |
| eye-watch | |
| feedback | |
| file | |
| file-add | |
| file-binary | |
| file-code | |
| file-directory | |
| file-directory-create | |
| file-media | |
| file-pdf | |
| file-submodule | |
| file-symlink-directory | |
| file-symlink-file | |
| file-text | |
| file-zip | |
| files | |
| filter-filled | |
| filter | |
| flame | |
| fold | |
| fold-down | |
| fold-up | |
| folder | |
| folder-active | |
| folder-library | |
| folder-opened | |
| game | |
| gather | |
| gear | |
| gift | |
| gist | |
| gist-fork | |
| gist-new | |
| gist-private | |
| gist-secret | |
| git-branch | |
| git-branch-create | |
| git-branch-delete | |
| git-commit | |
| git-compare | |
| git-fetch | |
| git-fork-private | |
| git-merge | |
| git-pull-request | |
| git-pull-request-abandoned | |
| git-pull-request-closed | |
| git-pull-request-create | |
| git-pull-request-draft | |
| git-pull-request-new-changes | |
| git-pull-request-go-to-changes | |
| github | |
| github-action | |
| github-alt | |
| github-inverted | |
| globe | |
| go-to-file | |
| grabber | |
| graph | |
| graph-left | |
| graph-line | |
| graph-scatter | |
| gripper | |
| group-by-ref-type | |
| heart | |
| history | |
| home | |
| horizontal-rule | |
| hubot | |
| inbox | |
| indent | |
| info | |
| insert | |
| inspect | |
| issue-closed | |
| issue-draft | |
| issue-opened | |
| issue-reopened | |
| issues | |
| italic | |
| jersey | |
| json | |
| kebab-horizontal | |
| kebab-vertical | |
| key | |
| keyboard | |
| law | |
| layers-active | |
| layers-dot | |
| layers | |
| layout-activitybar-left | |
| layout-activitybar-right | |
| layout-centered | |
| layout-menubar | |
| layout-panel-center | |
| layout-panel-justify | |
| layout-panel-left | |
| layout-panel-right | |
| layout-panel | |
| layout-sidebar-left | |
| layout-sidebar-right | |
| layout-statusbar | |
| layout | |
| library | |
| light-bulb | |
| lightbulb | |
| lightbulb-autofix | |
| link | |
| link-external | |
| list-filter | |
| list-flat | |
| list-ordered | |
| list-selection | |
| list-tree | |
| list-unordered | |
| live-share | |
| loading | |
| location | |
| lock-small | |
| lock | |
| log-in | |
| log-out | |
| logo-github | |
| magnet | |
| mail-read | |
| mail-reply | |
| mark-github | |
| Markdown | |
| megaphone | |
| mention | |
| menu | |
| merge | |
| mic | |
| mic-filled | |
| microscope | |
| milestone | |
| mirror | |
| mirror-private | |
| mirror-public | |
| more | |
| mortar-board | |
| move | |
| multiple-windows | |
| music | |
| mute | |
| new-file | |
| new-folder | |
| newline | |
| no-newline | |
| note | |
| notebook | |
| notebook-template | |
| octoface | |
| open-preview | |
| organization | |
| organization-filled | |
| organization-outline | |
| output | |
| package | |
| paintcan | |
| pass | |
| pass-filled | |
| pencil | |
| person | |
| person-add | |
| person-filled | |
| person-follow | |
| person-outline | |
| pie-chart | |
| piano | |
| pin | |
| pinned | |
| pinned-dirty | |
| play | |
| play-circle | |
| plug | |
| plus | |
| preserve-case | |
| 预览 | |
| primitive-dot | |
| primitive-square | |
| project | |
| pulse | |
| question | |
| quote | |
| radio-tower | |
| reactions | |
| record | |
| record-keys | |
| record-small | |
| redo | |
| references | |
| refresh | |
| regex | |
| remote | |
| remote-explorer | |
| remove | |
| remove-close | |
| repl | |
| replace | |
| replace-all | |
| reply | |
| repo | |
| repo-clone | |
| repo-create | |
| repo-delete | |
| repo-force-push | |
| repo-forked | |
| repo-pull | |
| repo-push | |
| repo-sync | |
| report | |
| request-changes | |
| rocket | |
| root-folder | |
| root-folder-opened | |
| rss | |
| ruby | |
| run | |
| run-all | |
| run-above | |
| run-below | |
| run-errors | |
| save | |
| save-all | |
| save-as | |
| screen-full | |
| screen-normal | |
| search | |
| search-save | |
| search-stop | |
| search-fuzzy | |
| selection | |
| send | |
| server | |
| server-environment | |
| server-process | |
| settings | |
| settings-gear | |
| shield | |
| sign-in | |
| sign-out | |
| smiley | |
| snake | |
| sparkle | |
| sort-precedence | |
| source-control | |
| split-horizontal | |
| split-vertical | |
| squirrel | |
| star | |
| star-add | |
| star-delete | |
| star-empty | |
| star-full | |
| star-half | |
| stop | |
| stop-circle | |
| symbol-array | |
| symbol-boolean | |
| symbol-class | |
| symbol-color | |
| symbol-constant | |
| symbol-constructor | |
| symbol-enum | |
| symbol-enum-member | |
| symbol-event | |
| symbol-field | |
| symbol-file | |
| symbol-folder | |
| symbol-function | |
| symbol-interface | |
| symbol-key | |
| symbol-keyword | |
| symbol-method | |
| symbol-misc | |
| symbol-module | |
| symbol-namespace | |
| symbol-null | |
| symbol-number | |
| symbol-numeric | |
| symbol-object | |
| symbol-operator | |
| symbol-package | |
| symbol-parameter | |
| symbol-property | |
| symbol-reference | |
| symbol-ruler | |
| symbol-snippet | |
| symbol-string | |
| symbol-struct | |
| symbol-structure | |
| symbol-text | |
| symbol-type-parameter | |
| symbol-unit | |
| symbol-value | |
| symbol-variable | |
| sync | |
| sync-ignored | |
| tag-add | |
| tag-remove | |
| tag | |
| target | |
| tasklist | |
| telescope | |
| terminal-bash | |
| terminal-cmd | |
| terminal-debian | |
| terminal-linux | |
| terminal-powershell | |
| terminal-tmux | |
| terminal-ubuntu | |
| terminal | |
| text-size | |
| three-bars | |
| thumbsdown | |
| thumbsdown-filled | |
| thumbsup | |
| thumbsup-filled | |
| tools | |
| trash | |
| trashcan | |
| triangle-down | |
| triangle-left | |
| triangle-right | |
| triangle-up | |
| type-hierarchy | |
| type-hierarchy-sub | |
| type-hierarchy-super | |
| unfold | |
| ungroup-by-ref-type | |
| unlock | |
| unmute | |
| unverified | |
| variable | |
| verified-filled | |
| verified | |
| versions | |
| vm | |
| vm-active | |
| vm-connect | |
| vm-outline | |
| vm-running | |
| vr | |
| warning | |
| watch | |
| whitespace | |
| whole-word | |
| window | |
| word-wrap | |
| workspace-trusted | |
| workspace-unknown | |
| workspace-untrusted | |
| wrench | |
| wrench-subaction | |
| x | |
| zap | |
| zoom-in | |
| zoom-out |